Class AuthService.AppSettings
Class for store appsettings, by default appsettings is hardcoded.
Inheritance
System.Object
AuthService.AppSettings
Namespace: FastReport.Auth
Assembly: FastReport.dll
Syntax
public class AppSettings
Constructors
AppSettings()
Declaration
public AppSettings()
Properties
AuthorizationEndpoint
Authorization Endpoint from the OAuth2 specification.
Declaration
public string AuthorizationEndpoint { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CallbackHost
Host for callback requests.
Declaration
public string CallbackHost { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ClientId
Client identifier or client name from the OAuth2 specification.
Declaration
public string ClientId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ClientSecret
Client secret or client name from the OAuth2 specification.
Declaration
public string ClientSecret { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CodeChallengeMethod
Code challenge method from the OAuth2 specification.
Declaration
public string CodeChallengeMethod { get; set; }
Property Value
Type | Description |
---|---|
System.String |
EndSessionEndpoint
EndSession Endpoint from the OAuth2 specification.
Declaration
public string EndSessionEndpoint { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Host
Host for sign in requests
Declaration
public string Host { get; set; }
Property Value
Type | Description |
---|---|
System.String |
JwksEndpoint
JSON Web Key Set Endpoint from the OAuth2 specification.
Declaration
public string JwksEndpoint { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RedirectError
Error result
Declaration
public string RedirectError { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RedirectSignInUri
Redirent sign in link for this application.
Declaration
public string RedirectSignInUri { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RedirectSignOutUri
Redirent sign out link for this application.
Declaration
public string RedirectSignOutUri { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RedirectSuccess
Success result
Declaration
public string RedirectSuccess { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ResponseType
Type of the reponse from the OAuth2 specification.
Declaration
public string ResponseType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Scopes
Scopes for the request from the OAuth2 specification, splited by space.
Declaration
public string Scopes { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TokenEndpoint
Token Endpoint from the OAuth2 specification.
Declaration
public string TokenEndpoint { get; set; }
Property Value
Type | Description |
---|---|
System.String |