WebAuthenticationCoreManager.FindAccountProviderAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
FindAccountProviderAsync(String) |
웹 계정 공급자를 비동기적으로 찾으려고 시도합니다. |
FindAccountProviderAsync(String, String) |
웹 계정 공급자를 비동기적으로 찾으려고 시도합니다. |
FindAccountProviderAsync(String, String, User) |
웹 계정 공급자를 비동기적으로 찾으려고 시도합니다. |
FindAccountProviderAsync(String)
웹 계정 공급자를 비동기적으로 찾으려고 시도합니다.
public:
static IAsyncOperation<WebAccountProvider ^> ^ FindAccountProviderAsync(Platform::String ^ webAccountProviderId);
/// [Windows.Foundation.Metadata.Overload("FindAccountProviderAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(winrt::hstring const& webAccountProviderId);
[Windows.Foundation.Metadata.Overload("FindAccountProviderAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(string webAccountProviderId);
function findAccountProviderAsync(webAccountProviderId)
Public Shared Function FindAccountProviderAsync (webAccountProviderId As String) As IAsyncOperation(Of WebAccountProvider)
매개 변수
- webAccountProviderId
-
String
Platform::String
winrt::hstring
찾을 웹 계정 공급자의 ID입니다.
반환
비동기 찾기 작업입니다. 성공적으로 완료되면 찾은 웹 계정 공급자를 나타내는 WebAccountProvider 개체를 포함합니다.
- 특성
추가 정보
적용 대상
FindAccountProviderAsync(String, String)
웹 계정 공급자를 비동기적으로 찾으려고 시도합니다.
public:
static IAsyncOperation<WebAccountProvider ^> ^ FindAccountProviderAsync(Platform::String ^ webAccountProviderId, Platform::String ^ authority);
/// [Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(winrt::hstring const& webAccountProviderId, winrt::hstring const& authority);
[Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(string webAccountProviderId, string authority);
function findAccountProviderAsync(webAccountProviderId, authority)
Public Shared Function FindAccountProviderAsync (webAccountProviderId As String, authority As String) As IAsyncOperation(Of WebAccountProvider)
매개 변수
- webAccountProviderId
-
String
Platform::String
winrt::hstring
찾을 웹 계정 공급자의 ID입니다.
- authority
-
String
Platform::String
winrt::hstring
찾을 웹 계정 공급자의 권한입니다.
중요
를 webAccountProviderId 값으로 사용하는 "https://login.windows.local"
경우 기관 값을 지정하면 안 됩니다. 대신 이 메서드의 단일 매개 변수 오버로드 를 사용합니다.
반환
비동기 찾기 작업입니다. 성공적으로 완료되면 찾은 웹 계정 공급자를 나타내는 WebAccountProvider 개체를 포함합니다.
- 특성
추가 정보
적용 대상
FindAccountProviderAsync(String, String, User)
웹 계정 공급자를 비동기적으로 찾으려고 시도합니다.
public:
static IAsyncOperation<WebAccountProvider ^> ^ FindAccountProviderAsync(Platform::String ^ webAccountProviderId, Platform::String ^ authority, User ^ user);
/// [Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityForUserAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(winrt::hstring const& webAccountProviderId, winrt::hstring const& authority, User const& user);
[Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityForUserAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(string webAccountProviderId, string authority, User user);
function findAccountProviderAsync(webAccountProviderId, authority, user)
Public Shared Function FindAccountProviderAsync (webAccountProviderId As String, authority As String, user As User) As IAsyncOperation(Of WebAccountProvider)
매개 변수
- webAccountProviderId
-
String
Platform::String
winrt::hstring
찾을 웹 계정 공급자의 ID입니다.
- authority
-
String
Platform::String
winrt::hstring
찾을 웹 계정 공급자의 권한입니다.
- user
- User
찾을 웹 계정 공급자와 연결된 사용자입니다.
중요
를 webAccountProviderId 값으로 사용하는 "https://login.windows.local"
경우 기관 값을 지정하면 안 됩니다. 대신 이 메서드의 단일 매개 변수 오버로드 를 사용합니다.
반환
비동기 찾기 작업입니다. 성공적으로 완료되면 찾은 웹 계정 공급자를 나타내는 WebAccountProvider 개체를 포함합니다.
- 특성