Class OAuthClientService#
Defined in File OAuthClientService.cs
Inheritance Relationships#
Base Type#
public xbe.sdk.ServiceBase
(Class ServiceBase)
Class Documentation#
- class xbe.sdk.Services.OAuthClientService : xbe.sdk.ServiceBase#
Public Functions
- OAuthClientService ()#
- Task<List<OAuthClient>> FindAll (Dictionary<string, string> query = null)#
Returns all clients from the system that the user has access to.
- Task<OAuthClient> FindById (string id)#
Returns a single client from the system that the user has access to.
- Task<OAuthClient> Create (OAuthClient obj)#
Create a new client.
- Task<long?> Count (Dictionary<string, string> query = null)#
Returns the the count of clients.
- Task<OAuthClient> Update (string id, OAuthClient obj)#
Updates a single client.
- Task Truncate (Dictionary<string, string> query = null)#
Deletes all Entities from the service.
- Task Delete (string id)#
Deletes The Client.