ControllerBase.Challenge Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
Challenge(AuthenticationProperties, String[]) |
Belirtilen kimlik doğrulama düzenleri ve |
Challenge() |
bir ChallengeResultoluşturur. |
Challenge(AuthenticationProperties) |
Belirtilen |
Challenge(AuthenticationProperties) |
Belirtilen |
Challenge(String[]) |
Belirtilen kimlik doğrulama düzenleriyle bir ChallengeResult oluşturur. |
Challenge(AuthenticationProperties, String[]) |
Belirtilen kimlik doğrulama düzenleri ve |
Challenge(AuthenticationProperties, String[])
Belirtilen kimlik doğrulama düzenleri ve properties
ile bir ChallengeResult oluşturur.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties, ParamArray authenticationSchemes As String()) As ChallengeResult
Parametreler
- properties
- AuthenticationProperties
AuthenticationProperties kimlik doğrulama sınamasını gerçekleştirmek için kullanılır.
- authenticationSchemes
- String[]
Sınamak için kimlik doğrulama düzenleri.
Döndürülenler
Yanıt için oluşturulan ChallengeResult .
- Öznitelikler
Şunlara uygulanır
Challenge()
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
bir ChallengeResultoluşturur.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge();
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge ();
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : unit -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : unit -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge () As ChallengeResult
Döndürülenler
Yanıt için oluşturulan ChallengeResult .
- Öznitelikler
Açıklamalar
Bu yöntemin davranışı kullanımdaki öğesine IAuthenticationService bağlıdır. Status401Unauthorized ve Status403Forbidden olası durum sonuçları arasında yer alır.
Şunlara uygulanır
Challenge(AuthenticationProperties)
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
Belirtilen properties
ile bir ChallengeResult oluşturur.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties) As ChallengeResult
Parametreler
- properties
- AuthenticationProperties
AuthenticationProperties kimlik doğrulama sınamasını gerçekleştirmek için kullanılır.
Döndürülenler
Yanıt için oluşturulan ChallengeResult .
- Öznitelikler
Açıklamalar
Bu yöntemin davranışı kullanımdaki öğesine IAuthenticationService bağlıdır. Status401Unauthorized ve Status403Forbidden olası durum sonuçları arasında yer alır.
Şunlara uygulanır
Challenge(AuthenticationProperties)
Belirtilen properties
ile bir ChallengeResult oluşturur.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties) As ChallengeResult
Parametreler
- properties
- AuthenticationProperties
AuthenticationProperties kimlik doğrulama sınamasını gerçekleştirmek için kullanılır.
Döndürülenler
Yanıt için oluşturulan ChallengeResult .
- Öznitelikler
Şunlara uygulanır
Challenge(String[])
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
Belirtilen kimlik doğrulama düzenleriyle bir ChallengeResult oluşturur.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (ParamArray authenticationSchemes As String()) As ChallengeResult
Parametreler
- authenticationSchemes
- String[]
Sınamak için kimlik doğrulama düzenleri.
Döndürülenler
Yanıt için oluşturulan ChallengeResult .
- Öznitelikler
Açıklamalar
Bu yöntemin davranışı kullanımdaki öğesine IAuthenticationService bağlıdır. Status401Unauthorized ve Status403Forbidden olası durum sonuçları arasında yer alır.
Şunlara uygulanır
Challenge(AuthenticationProperties, String[])
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
- Kaynak:
- ControllerBase.cs
Belirtilen kimlik doğrulama düzenleri ve properties
ile bir ChallengeResult oluşturur.
public:
virtual Microsoft::AspNetCore::Mvc::ChallengeResult ^ Challenge(Microsoft::AspNetCore::Authentication::AuthenticationProperties ^ properties, ... cli::array <System::String ^> ^ authenticationSchemes);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.ChallengeResult Challenge (Microsoft.AspNetCore.Authentication.AuthenticationProperties properties, params string[] authenticationSchemes);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
override this.Challenge : Microsoft.AspNetCore.Authentication.AuthenticationProperties * string[] -> Microsoft.AspNetCore.Mvc.ChallengeResult
Public Overridable Function Challenge (properties As AuthenticationProperties, ParamArray authenticationSchemes As String()) As ChallengeResult
Parametreler
- properties
- AuthenticationProperties
AuthenticationProperties kimlik doğrulama sınamasını gerçekleştirmek için kullanılır.
- authenticationSchemes
- String[]
Sınamak için kimlik doğrulama düzenleri.
Döndürülenler
Yanıt için oluşturulan ChallengeResult .
- Öznitelikler
Açıklamalar
Bu yöntemin davranışı kullanımdaki öğesine IAuthenticationService bağlıdır. Status401Unauthorized ve Status403Forbidden olası durum sonuçları arasında yer alır.