다음을 통해 공유


AuthenticationManager.ForbidAsync 메서드

정의

오버로드

ForbidAsync(String, AuthenticationProperties)
ForbidAsync(String)
ForbidAsync()

를 사용하여 인증 관리자에 대한 챌린지를 Forbidden만듭니다.

ForbidAsync(AuthenticationProperties)

를 사용하여 인증 관리자에 대한 챌린지를 Forbidden만듭니다.

ForbidAsync(String, AuthenticationProperties)

Source:
AuthenticationManager.cs
Source:
AuthenticationManager.cs
public:
 virtual System::Threading::Tasks::Task ^ ForbidAsync(System::String ^ authenticationScheme, Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public virtual System.Threading.Tasks.Task ForbidAsync (string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
abstract member ForbidAsync : string * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> System.Threading.Tasks.Task
override this.ForbidAsync : string * Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> System.Threading.Tasks.Task
Public Overridable Function ForbidAsync (authenticationScheme As String, properties As AuthenticationProperties) As Task

매개 변수

authenticationScheme
String

반환

적용 대상

ForbidAsync(String)

Source:
AuthenticationManager.cs
Source:
AuthenticationManager.cs
public:
 virtual System::Threading::Tasks::Task ^ ForbidAsync(System::String ^ authenticationScheme);
public virtual System.Threading.Tasks.Task ForbidAsync (string authenticationScheme);
abstract member ForbidAsync : string -> System.Threading.Tasks.Task
override this.ForbidAsync : string -> System.Threading.Tasks.Task
Public Overridable Function ForbidAsync (authenticationScheme As String) As Task

매개 변수

authenticationScheme
String

반환

적용 대상

ForbidAsync()

Source:
AuthenticationManager.cs
Source:
AuthenticationManager.cs

를 사용하여 인증 관리자에 대한 챌린지를 Forbidden만듭니다.

public:
 virtual System::Threading::Tasks::Task ^ ForbidAsync();
public virtual System.Threading.Tasks.Task ForbidAsync ();
abstract member ForbidAsync : unit -> System.Threading.Tasks.Task
override this.ForbidAsync : unit -> System.Threading.Tasks.Task
Public Overridable Function ForbidAsync () As Task

반환

Task 비동기 챌린지 작업을 나타내는 입니다.

적용 대상

ForbidAsync(AuthenticationProperties)

Source:
AuthenticationManager.cs
Source:
AuthenticationManager.cs

를 사용하여 인증 관리자에 대한 챌린지를 Forbidden만듭니다.

public:
 virtual System::Threading::Tasks::Task ^ ForbidAsync(Microsoft::AspNetCore::Http::Authentication::AuthenticationProperties ^ properties);
public virtual System.Threading.Tasks.Task ForbidAsync (Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
abstract member ForbidAsync : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> System.Threading.Tasks.Task
override this.ForbidAsync : Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties -> System.Threading.Tasks.Task
Public Overridable Function ForbidAsync (properties As AuthenticationProperties) As Task

매개 변수

properties
AuthenticationProperties

특정 인증 유형에서 사용할 수 있는 추가 임의 값입니다.

반환

Task 비동기 챌린지 작업을 나타내는 입니다.

적용 대상