AuthenticationDomain Constructors

Definition

Overloads

AuthenticationDomain()
AuthenticationDomain(IEnumerable<String>)
AuthenticationDomain(IList<ProviderAuthInfo>)
AuthenticationDomain(IEnumerable<String>, IEnumerable<ProviderAuthInfo>, Boolean)

AuthenticationDomain()

public:
 AuthenticationDomain();
public AuthenticationDomain ();
Public Sub New ()

Applies to

AuthenticationDomain(IEnumerable<String>)

public:
 AuthenticationDomain(System::Collections::Generic::IEnumerable<System::String ^> ^ authenticationMethods);
public AuthenticationDomain (System.Collections.Generic.IEnumerable<string> authenticationMethods);
new Microsoft.IdentityServer.Authentication.AuthenticationDomain : seq<string> -> Microsoft.IdentityServer.Authentication.AuthenticationDomain
Public Sub New (authenticationMethods As IEnumerable(Of String))

Parameters

authenticationMethods
IEnumerable<String>

Applies to

AuthenticationDomain(IList<ProviderAuthInfo>)

public:
 AuthenticationDomain(System::Collections::Generic::IList<Microsoft::IdentityServer::Authentication::ProviderAuthInfo ^> ^ providerAuthInfoList);
public AuthenticationDomain (System.Collections.Generic.IList<Microsoft.IdentityServer.Authentication.ProviderAuthInfo> providerAuthInfoList);
new Microsoft.IdentityServer.Authentication.AuthenticationDomain : System.Collections.Generic.IList<Microsoft.IdentityServer.Authentication.ProviderAuthInfo> -> Microsoft.IdentityServer.Authentication.AuthenticationDomain
Public Sub New (providerAuthInfoList As IList(Of ProviderAuthInfo))

Parameters

providerAuthInfoList
IList<ProviderAuthInfo>

Applies to

AuthenticationDomain(IEnumerable<String>, IEnumerable<ProviderAuthInfo>, Boolean)

public:
 AuthenticationDomain(System::Collections::Generic::IEnumerable<System::String ^> ^ authenticationMethods, System::Collections::Generic::IEnumerable<Microsoft::IdentityServer::Authentication::ProviderAuthInfo ^> ^ providerAuthInfoList, bool useProviderAuthInfoList);
public AuthenticationDomain (System.Collections.Generic.IEnumerable<string> authenticationMethods, System.Collections.Generic.IEnumerable<Microsoft.IdentityServer.Authentication.ProviderAuthInfo> providerAuthInfoList, bool useProviderAuthInfoList);
new Microsoft.IdentityServer.Authentication.AuthenticationDomain : seq<string> * seq<Microsoft.IdentityServer.Authentication.ProviderAuthInfo> * bool -> Microsoft.IdentityServer.Authentication.AuthenticationDomain
Public Sub New (authenticationMethods As IEnumerable(Of String), providerAuthInfoList As IEnumerable(Of ProviderAuthInfo), useProviderAuthInfoList As Boolean)

Parameters

authenticationMethods
IEnumerable<String>
providerAuthInfoList
IEnumerable<ProviderAuthInfo>
useProviderAuthInfoList
Boolean

Applies to