Class OAuthProviderService

Class OAuthProviderService#

Inheritance Relationships#

Base Type#

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.