Class ClientData
Describes configurations of client data
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 |