Compartilhar via


ChallengeResult Construtores

Definição

Sobrecargas

ChallengeResult()

Inicializa uma nova instância de ChallengeResult.

ChallengeResult(AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com o propertiesespecificado.

ChallengeResult(AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com o propertiesespecificado.

ChallengeResult(IList<String>)

Inicializa uma nova instância de ChallengeResult com os esquemas de autenticação especificados.

ChallengeResult(String)

Inicializa uma nova instância de ChallengeResult com o esquema de autenticação especificado.

ChallengeResult(IList<String>, AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com os esquemas de autenticação especificados e properties.

ChallengeResult(IList<String>, AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com os esquemas de autenticação especificados e properties.

ChallengeResult(String, AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com o esquema de autenticação especificado e properties.

ChallengeResult(String, AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com o esquema de autenticação especificado e properties.

ChallengeResult()

Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs

Inicializa uma nova instância de ChallengeResult.

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

Aplica-se a

ChallengeResult(AuthenticationProperties)

Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs

Inicializa uma nova instância de ChallengeResult com o propertiesespecificado.

public:
 ChallengeResult(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public ChallengeResult (Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (properties As AuthenticationProperties)

Parâmetros

properties
AuthenticationProperties

AuthenticationProperties usado para executar o desafio de autenticação.

Aplica-se a

ChallengeResult(AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com o propertiesespecificado.

public:
 ChallengeResult(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (properties As AuthenticationProperties)

Parâmetros

properties
AuthenticationProperties

AuthenticationProperties usado para executar o desafio de autenticação.

Aplica-se a

ChallengeResult(IList<String>)

Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs

Inicializa uma nova instância de ChallengeResult com os esquemas de autenticação especificados.

public:
 ChallengeResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes);
new Microsoft.AspNetCore.Mvc.ChallengeResult : System.Collections.Generic.IList<string> -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationSchemes As IList(Of String))

Parâmetros

authenticationSchemes
IList<String>

Os esquemas de autenticação a serem desafiados.

Aplica-se a

ChallengeResult(String)

Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs

Inicializa uma nova instância de ChallengeResult com o esquema de autenticação especificado.

public:
 ChallengeResult(System::String ^ authenticationScheme);
public ChallengeResult (string authenticationScheme);
new Microsoft.AspNetCore.Mvc.ChallengeResult : string -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationScheme As String)

Parâmetros

authenticationScheme
String

O esquema de autenticação a ser desafiado.

Aplica-se a

ChallengeResult(IList<String>, AuthenticationProperties)

Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs

Inicializa uma nova instância de ChallengeResult com os esquemas de autenticação especificados e properties.

public:
 ChallengeResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : System.Collections.Generic.IList<string> * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationSchemes As IList(Of String), properties As AuthenticationProperties)

Parâmetros

authenticationSchemes
IList<String>

O esquema de autenticação a ser desafiado.

properties
AuthenticationProperties

AuthenticationProperties usado para executar o desafio de autenticação.

Aplica-se a

ChallengeResult(IList<String>, AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com os esquemas de autenticação especificados e properties.

public:
 ChallengeResult(System::Collections::Generic::IList<System::String ^> ^ authenticationSchemes, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (System.Collections.Generic.IList<string> authenticationSchemes, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : System.Collections.Generic.IList<string> * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationSchemes As IList(Of String), properties As AuthenticationProperties)

Parâmetros

authenticationSchemes
IList<String>

O esquema de autenticação a ser desafiado.

properties
AuthenticationProperties

AuthenticationProperties usado para executar o desafio de autenticação.

Aplica-se a

ChallengeResult(String, AuthenticationProperties)

Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs
Origem:
ChallengeResult.cs

Inicializa uma nova instância de ChallengeResult com o esquema de autenticação especificado e properties.

public:
 ChallengeResult(System::String ^ authenticationScheme, Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (string authenticationScheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
public ChallengeResult (string authenticationScheme, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : string * Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationScheme As String, properties As AuthenticationProperties)

Parâmetros

authenticationScheme
String

Os esquemas de autenticação a serem desafiados.

properties
AuthenticationProperties

AuthenticationProperties usado para executar o desafio de autenticação.

Aplica-se a

ChallengeResult(String, AuthenticationProperties)

Inicializa uma nova instância de ChallengeResult com o esquema de autenticação especificado e properties.

public:
 ChallengeResult(System::String ^ authenticationScheme, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public ChallengeResult (string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
new Microsoft.AspNetCore.Mvc.ChallengeResult : string * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Sub New (authenticationScheme As String, properties As AuthenticationProperties)

Parâmetros

authenticationScheme
String

Os esquemas de autenticação a serem desafiados.

properties
AuthenticationProperties

AuthenticationProperties usado para executar o desafio de autenticação.

Aplica-se a