OpenIdConnectConfig Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OpenIdConnectConfig() |
Initializes a new instance of the OpenIdConnectConfig class. |
OpenIdConnectConfig(String, String, String, String, String) |
Initializes a new instance of the OpenIdConnectConfig class. |
OpenIdConnectConfig()
Initializes a new instance of the OpenIdConnectConfig class.
public OpenIdConnectConfig ();
Public Sub New ()
Applies to
OpenIdConnectConfig(String, String, String, String, String)
Initializes a new instance of the OpenIdConnectConfig class.
public OpenIdConnectConfig (string authorizationEndpoint = default, string tokenEndpoint = default, string issuer = default, string certificationUri = default, string wellKnownOpenIdConfiguration = default);
new Microsoft.Azure.Management.WebSites.Models.OpenIdConnectConfig : string * string * string * string * string -> Microsoft.Azure.Management.WebSites.Models.OpenIdConnectConfig
Public Sub New (Optional authorizationEndpoint As String = Nothing, Optional tokenEndpoint As String = Nothing, Optional issuer As String = Nothing, Optional certificationUri As String = Nothing, Optional wellKnownOpenIdConfiguration As String = Nothing)
Parameters
- authorizationEndpoint
- String
The endpoint to be used to make an authorization request.
- tokenEndpoint
- String
The endpoint to be used to request a token.
- issuer
- String
The endpoint that issues the token.
- certificationUri
- String
The endpoint that provides the keys necessary to validate the token.
- wellKnownOpenIdConfiguration
- String
The endpoint that contains all the configuration endpoints for the provider.
Applies to
Azure SDK for .NET