Class DanglIdentityConfig
This is the default config to be used with Dangl.Identity
Inheritance
System.Object
DanglIdentityConfig
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dangl.Identity.Client
Assembly: Dangl.Identity.Client.dll
Syntax
public class DanglIdentityConfig : IDanglIdentityConfig
Constructors
| Improve this Doc View SourceDanglIdentityConfig(String, String, String, String, String)
This is the default config to be used with Dangl.Identity
Declaration
public DanglIdentityConfig(string clientId, string clientSecret, string requiredScope = null, string baseUri = "https://identity.dangl-it.com", string fallbackBaseUri = "https://identity.dangl-it.de")
Parameters
Type | Name | Description |
---|---|---|
System.String | clientId | |
System.String | clientSecret | |
System.String | requiredScope | |
System.String | baseUri | |
System.String | fallbackBaseUri |
Properties
| Improve this Doc View SourceBaseUri
The base url for Dangl.Identity
Declaration
public string BaseUri { get; }
Property Value
Type | Description |
---|---|
System.String |
ClientId
The OpenID / OAuth2 client id
Declaration
public string ClientId { get; }
Property Value
Type | Description |
---|---|
System.String |
ClientSecret
The OpenID / OAuth2 client secret
Declaration
public string ClientSecret { get; }
Property Value
Type | Description |
---|---|
System.String |
FallbackBaseUri
The fallback url for Dangl.Identity
Declaration
public string FallbackBaseUri { get; }
Property Value
Type | Description |
---|---|
System.String |
FallbackTokenEndpoint
The token endpoint relative to the fallback url
Declaration
public string FallbackTokenEndpoint { get; }
Property Value
Type | Description |
---|---|
System.String |
RequiredScope
The scope to use when authenticating with Dangl.Identity. Multiple scopes can be space-separarated.
Declaration
public string RequiredScope { get; }
Property Value
Type | Description |
---|---|
System.String |
TokenEndpoint
The token endpoint relative to the base url
Declaration
public string TokenEndpoint { get; }
Property Value
Type | Description |
---|---|
System.String |