ChallengeResult 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ChallengeResult() |
ChallengeResult새 인스턴스를 초기화합니다. |
ChallengeResult(AuthenticationProperties) |
지정된 |
ChallengeResult(AuthenticationProperties) |
지정된 |
ChallengeResult(IList<String>) |
지정된 인증 체계를 사용하여 ChallengeResult 새 인스턴스를 초기화합니다. |
ChallengeResult(String) |
지정된 인증 체계를 사용하여 ChallengeResult 새 인스턴스를 초기화합니다. |
ChallengeResult(IList<String>, AuthenticationProperties) |
지정된 인증 체계 및 |
ChallengeResult(IList<String>, AuthenticationProperties) |
지정된 인증 체계 및 |
ChallengeResult(String, AuthenticationProperties) |
지정된 인증 체계 및 |
ChallengeResult(String, AuthenticationProperties) |
지정된 인증 체계 및 |
ChallengeResult()
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
ChallengeResult새 인스턴스를 초기화합니다.
public:
ChallengeResult();
public ChallengeResult ();
Public Sub New ()
적용 대상
ChallengeResult(AuthenticationProperties)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
지정된 properties
사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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)
지정된 properties
사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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
- Source:
- ChallengeResult.cs
지정된 인증 체계를 사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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))
매개 변수
적용 대상
ChallengeResult(String)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
지정된 인증 체계를 사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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
- Source:
- ChallengeResult.cs
지정된 인증 체계 및 properties
사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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)
매개 변수
- properties
- AuthenticationProperties
AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.
적용 대상
ChallengeResult(IList<String>, AuthenticationProperties)
지정된 인증 체계 및 properties
사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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)
매개 변수
- properties
- AuthenticationProperties
AuthenticationProperties 인증 챌린지를 수행하는 데 사용됩니다.
적용 대상
ChallengeResult(String, AuthenticationProperties)
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
- Source:
- ChallengeResult.cs
지정된 인증 체계 및 properties
사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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)
지정된 인증 체계 및 properties
사용하여 ChallengeResult 새 인스턴스를 초기화합니다.
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 인증 챌린지를 수행하는 데 사용됩니다.