WebTokenRequest 생성자

정의

오버로드

WebTokenRequest(WebAccountProvider)

하나의 입력으로 WebTokenRequest 클래스의 새 instance 초기화합니다.

WebTokenRequest(WebAccountProvider, String)

두 개의 입력을 사용하여 WebTokenRequest 클래스의 새 instance 초기화합니다.

WebTokenRequest(WebAccountProvider, String, String)

세 개의 입력을 사용하여 WebTokenRequest 클래스의 새 instance 초기화합니다.

WebTokenRequest(WebAccountProvider, String, String, WebTokenRequestPromptType)

4개의 입력을 사용하여 WebTokenRequest 클래스의 새 instance 초기화합니다.

WebTokenRequest(WebAccountProvider)

하나의 입력으로 WebTokenRequest 클래스의 새 instance 초기화합니다.

public:
 WebTokenRequest(WebAccountProvider ^ provider);
 WebTokenRequest(WebAccountProvider const& provider);
public WebTokenRequest(WebAccountProvider provider);
function WebTokenRequest(provider)
Public Sub New (provider As WebAccountProvider)

매개 변수

provider
WebAccountProvider

요청이 대상인 웹 계정 공급자입니다.

추가 정보

적용 대상

WebTokenRequest(WebAccountProvider, String)

두 개의 입력을 사용하여 WebTokenRequest 클래스의 새 instance 초기화합니다.

public:
 WebTokenRequest(WebAccountProvider ^ provider, Platform::String ^ scope);
 WebTokenRequest(WebAccountProvider const& provider, winrt::hstring const& scope);
public WebTokenRequest(WebAccountProvider provider, string scope);
function WebTokenRequest(provider, scope)
Public Sub New (provider As WebAccountProvider, scope As String)

매개 변수

provider
WebAccountProvider

요청이 대상인 웹 계정 공급자입니다.

scope
String

Platform::String

winrt::hstring

요청의 scope.

추가 정보

적용 대상

WebTokenRequest(WebAccountProvider, String, String)

세 개의 입력을 사용하여 WebTokenRequest 클래스의 새 instance 초기화합니다.

public:
 WebTokenRequest(WebAccountProvider ^ provider, Platform::String ^ scope, Platform::String ^ clientId);
 WebTokenRequest(WebAccountProvider const& provider, winrt::hstring const& scope, winrt::hstring const& clientId);
public WebTokenRequest(WebAccountProvider provider, string scope, string clientId);
function WebTokenRequest(provider, scope, clientId)
Public Sub New (provider As WebAccountProvider, scope As String, clientId As String)

매개 변수

provider
WebAccountProvider

요청이 대상인 웹 계정 공급자입니다.

scope
String

Platform::String

winrt::hstring

요청의 scope.

clientId
String

Platform::String

winrt::hstring

클라이언트 ID입니다.

추가 정보

적용 대상

WebTokenRequest(WebAccountProvider, String, String, WebTokenRequestPromptType)

4개의 입력을 사용하여 WebTokenRequest 클래스의 새 instance 초기화합니다.

public:
 WebTokenRequest(WebAccountProvider ^ provider, Platform::String ^ scope, Platform::String ^ clientId, WebTokenRequestPromptType promptType);
 WebTokenRequest(WebAccountProvider const& provider, winrt::hstring const& scope, winrt::hstring const& clientId, WebTokenRequestPromptType const& promptType);
public WebTokenRequest(WebAccountProvider provider, string scope, string clientId, WebTokenRequestPromptType promptType);
function WebTokenRequest(provider, scope, clientId, promptType)
Public Sub New (provider As WebAccountProvider, scope As String, clientId As String, promptType As WebTokenRequestPromptType)

매개 변수

provider
WebAccountProvider

요청이 대상인 웹 계정 공급자입니다.

scope
String

Platform::String

winrt::hstring

요청의 scope.

clientId
String

Platform::String

winrt::hstring

클라이언트 ID입니다.

promptType
WebTokenRequestPromptType

요청 프롬프트 유형입니다.

추가 정보

적용 대상