Class ClientData
Describes configurations of client data
Inheritance
object
ClientData
Namespace: i5.Toolkit.Core.OpenIDConnectClient
Assembly: cs.temp.dll.dll
Syntax
public class ClientData
Constructors
ClientData(string, string)
Creates a new client data instance with the given parameters
Declaration
public ClientData(string clientId, string clientSecret)
Parameters
Type | Name | Description |
---|---|---|
string | clientId | The id of the client that is registered at the provider |
string | clientSecret | The secret of the client that was issued by the provider |
Properties
ClientId
The id of the client that is registered at the provider
Declaration
public string ClientId { get; }
Property Value
Type | Description |
---|---|
string |
ClientSecret
The secret of the client that was issued by the provider
Declaration
public string ClientSecret { get; }
Property Value
Type | Description |
---|---|
string |