Interface IClientIdentityService
Summary description for IClientIdentityService.
Assembly: ImageVault.Core.dll
Syntax
public interface IClientIdentityService
Methods
LookupIdentity(String, String)
Lookup a client identity that matches the given key/secret
Declaration
DbClientIdentity LookupIdentity(string key, string secret)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.String |
secret |
|
Returns
ValidateIdentity(String, String)
Validates the supplied key/secret combination
Declaration
[Obsolete("Use LookupIdentity instead")]
bool ValidateIdentity(string key, string secret)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.String |
secret |
|
Returns
Type |
Description |
System.Boolean |
|