AuthenticationManager.ForbidAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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
- properties
- AuthenticationProperties
반환
적용 대상
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 비동기 챌린지 작업을 나타내는 입니다.