Interface IClientIdentityService
Summary description for IClientIdentityService.
Namespace: ImageVault.Common.Services
Assembly: ImageVault.Common.dll
Syntax
public interface IClientIdentityService : IService
Methods
Create(ClientIdentity)
Creates a client identity
Declaration
void Create(ClientIdentity clientIdentity)
Parameters
Type | Name | Description |
---|---|---|
ClientIdentity | clientIdentity |
CurrentUserInfo()
Gets User information about the current user
Declaration
UserInfo CurrentUserInfo()
Returns
Type | Description |
---|---|
UserInfo |
Delete(String)
Deletes a client identity by it's id
Declaration
void Delete(string id)
Parameters
Type | Name | Description |
---|---|---|
System.String | id |
GetAll()
Gets all registered clients
Declaration
IList<ClientIdentity> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<ClientIdentity> |
GetClient(String)
Gets a client by the specified id
Declaration
ClientIdentity GetClient(string id)
Parameters
Type | Name | Description |
---|---|---|
System.String | id |
Returns
Type | Description |
---|---|
ClientIdentity |
Update(ClientIdentity)
Updates an existing client identity
Declaration
void Update(ClientIdentity clientIdentity)
Parameters
Type | Name | Description |
---|---|---|
ClientIdentity | clientIdentity |