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