ChallengeResult 생성자

정의

오버로드

ChallengeResult()

ChallengeResult의 새 인스턴스를 초기화합니다.

ChallengeResult(AuthenticationProperties)

지정된 ChallengeResult을 사용하여 properties의 새 인스턴스를 초기화합니다.

ChallengeResult(AuthenticationProperties)

지정된 ChallengeResult을 사용하여 properties의 새 인스턴스를 초기화합니다.

ChallengeResult(IList<String>)

지정된 인증 체계를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

ChallengeResult(String)

지정된 인증 체계를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

ChallengeResult(IList<String>, AuthenticationProperties)

지정된 인증 체계 및 properties를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

ChallengeResult(IList<String>, AuthenticationProperties)

지정된 인증 체계 및 properties를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

ChallengeResult(String, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 ChallengeResult 새 instance 초기화합니다properties.

ChallengeResult(String, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 ChallengeResult 새 instance 초기화합니다properties.

ChallengeResult()

Source:
ChallengeResult.cs
Source:
ChallengeResult.cs

ChallengeResult의 새 인스턴스를 초기화합니다.

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

적용 대상

ChallengeResult(AuthenticationProperties)

Source:
ChallengeResult.cs
Source:
ChallengeResult.cs

지정된 ChallengeResult을 사용하여 properties의 새 인스턴스를 초기화합니다.

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)

매개 변수

properties
AuthenticationProperties

AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.

적용 대상

ChallengeResult(AuthenticationProperties)

지정된 ChallengeResult을 사용하여 properties의 새 인스턴스를 초기화합니다.

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)

매개 변수

properties
AuthenticationProperties

AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.

적용 대상

ChallengeResult(IList<String>)

Source:
ChallengeResult.cs
Source:
ChallengeResult.cs

지정된 인증 체계를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

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))

매개 변수

authenticationSchemes
IList<String>

이의를 제기할 인증 체계입니다.

적용 대상

ChallengeResult(String)

Source:
ChallengeResult.cs
Source:
ChallengeResult.cs

지정된 인증 체계를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

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)

매개 변수

authenticationScheme
String

이의를 제기할 인증 체계입니다.

적용 대상

ChallengeResult(IList<String>, AuthenticationProperties)

Source:
ChallengeResult.cs
Source:
ChallengeResult.cs

지정된 인증 체계 및 properties를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

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)

매개 변수

authenticationSchemes
IList<String>

이의를 제기할 인증 체계입니다.

properties
AuthenticationProperties

AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.

적용 대상

ChallengeResult(IList<String>, AuthenticationProperties)

지정된 인증 체계 및 properties를 사용하여 의 ChallengeResult 새 instance 초기화합니다.

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)

매개 변수

authenticationSchemes
IList<String>

이의를 제기할 인증 체계입니다.

properties
AuthenticationProperties

AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.

적용 대상

ChallengeResult(String, AuthenticationProperties)

Source:
ChallengeResult.cs
Source:
ChallengeResult.cs

지정된 인증 체계 및 를 사용하여 의 ChallengeResult 새 instance 초기화합니다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)

매개 변수

authenticationScheme
String

이의를 제기할 인증 체계입니다.

properties
AuthenticationProperties

AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.

적용 대상

ChallengeResult(String, AuthenticationProperties)

지정된 인증 체계 및 를 사용하여 의 ChallengeResult 새 instance 초기화합니다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)

매개 변수

authenticationScheme
String

이의를 제기할 인증 체계입니다.

properties
AuthenticationProperties

AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.

적용 대상