forked from DotNetDevs/Synology
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DotNetDevs#114 from DotNetDevs/dev
Update README.md
- Loading branch information
Showing
248 changed files
with
2,122 additions
and
1,405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,3 +39,4 @@ Thumbs.db | |
|
||
#dotCover | ||
*.dotCover | ||
.vs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
using System; | ||
using Synology.Api.Auth.Parameters; | ||
using Synology.Api.Auth.Parameters; | ||
using Synology.Api.Auth.Results; | ||
using Synology.Attributes; | ||
using Synology.Classes; | ||
using Synology.Interfaces; | ||
|
||
namespace Synology.Api.Auth | ||
{ | ||
public interface IAuthRequest : ISynologyRequest | ||
{ | ||
ResultData<AuthResult> Login(LoginParameters parameters = null); | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public interface IAuthRequest : ISynologyRequest | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
/// <param name="parameters"></param> | ||
/// <returns></returns> | ||
ResultData<AuthResult> Login(LoginParameters parameters = null); | ||
|
||
ResultData Logout(); | ||
} | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
/// <returns></returns> | ||
ResultData Logout(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Generic; | ||
using Synology.Classes; | ||
using Synology.Interfaces; | ||
|
||
namespace Synology.Api.Info | ||
{ | ||
public interface IInfoRequest : ISynologyRequest | ||
{ | ||
ResultData<Dictionary<string, IApiInfo>> Query(params string[] apis); | ||
} | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public interface IInfoRequest : ISynologyRequest | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
/// <param name="apis"></param> | ||
/// <returns></returns> | ||
ResultData<Dictionary<string, IApiInfo>> Query(params string[] apis); | ||
} | ||
} |
Oops, something went wrong.