ITicketStore.RetrieveAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
RetrieveAsync(String) |
지정된 키에 대한 저장소에서 ID를 검색합니다. |
RetrieveAsync(String, CancellationToken) |
지정된 키에 대한 저장소에서 ID를 검색합니다. |
RetrieveAsync(String, HttpContext, CancellationToken) |
지정된 키에 대한 저장소에서 ID를 검색합니다. |
RetrieveAsync(String)
- Source:
- ITicketStore.cs
지정된 키에 대한 저장소에서 ID를 검색합니다.
public:
System::Threading::Tasks::Task<Microsoft::AspNetCore::Authentication::AuthenticationTicket ^> ^ RetrieveAsync(System::String ^ key);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket> RetrieveAsync (string key);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket?> RetrieveAsync (string key);
abstract member RetrieveAsync : string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
Public Function RetrieveAsync (key As String) As Task(Of AuthenticationTicket)
매개 변수
- key
- String
ID와 연결된 키입니다.
반환
지정된 키와 연결된 ID이거나 null
, 찾을 수 없는 경우 입니다.
적용 대상
RetrieveAsync(String, CancellationToken)
- Source:
- ITicketStore.cs
지정된 키에 대한 저장소에서 ID를 검색합니다.
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket?> RetrieveAsync (string key, System.Threading.CancellationToken cancellationToken);
abstract member RetrieveAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
override this.RetrieveAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
Public Overridable Function RetrieveAsync (key As String, cancellationToken As CancellationToken) As Task(Of AuthenticationTicket)
매개 변수
- key
- String
ID와 연결된 키입니다.
- cancellationToken
- CancellationToken
작업을 취소해야 하는 알림을 전파하는 데 사용하는 CancellationToken입니다.
반환
지정된 키와 연결된 ID이거나 null
, 찾을 수 없는 경우 입니다.
적용 대상
RetrieveAsync(String, HttpContext, CancellationToken)
- Source:
- ITicketStore.cs
지정된 키에 대한 저장소에서 ID를 검색합니다.
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket?> RetrieveAsync (string key, Microsoft.AspNetCore.Http.HttpContext httpContext, System.Threading.CancellationToken cancellationToken);
abstract member RetrieveAsync : string * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
override this.RetrieveAsync : string * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
Public Overridable Function RetrieveAsync (key As String, httpContext As HttpContext, cancellationToken As CancellationToken) As Task(Of AuthenticationTicket)
매개 변수
- key
- String
ID와 연결된 키입니다.
- httpContext
- HttpContext
HttpContext 현재 요청과 연결된 입니다.
- cancellationToken
- CancellationToken
작업을 취소해야 하는 알림을 전파하는 데 사용하는 CancellationToken입니다.
반환
지정된 키와 연결된 ID이거나 null
, 찾을 수 없는 경우 입니다.