다음을 통해 공유


WebAuthenticatorResult 생성자

정의

오버로드

WebAuthenticatorResult()

WebAuthenticatorResult 클래스의 새 인스턴스를 초기화합니다.

WebAuthenticatorResult(IDictionary<String,String>)

기존 사전에서 새 instance 만듭니다.

WebAuthenticatorResult(Uri)

URI의 쿼리 문자열 매개 변수를 구문 분석하여 클래스의 WebAuthenticatorResult 새 instance 초기화합니다.

WebAuthenticatorResult(Uri, IWebAuthenticatorResponseDecoder)

URI의 쿼리 문자열 매개 변수를 구문 분석하여 클래스의 WebAuthenticatorResult 새 instance 초기화합니다.

WebAuthenticatorResult()

Source:
WebAuthenticatorResult.shared.cs
Source:
WebAuthenticatorResult.shared.cs

WebAuthenticatorResult 클래스의 새 인스턴스를 초기화합니다.

public:
 WebAuthenticatorResult();
public WebAuthenticatorResult ();
Public Sub New ()

적용 대상

WebAuthenticatorResult(IDictionary<String,String>)

Source:
WebAuthenticatorResult.shared.cs
Source:
WebAuthenticatorResult.shared.cs

기존 사전에서 새 instance 만듭니다.

public:
 WebAuthenticatorResult(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ properties);
public WebAuthenticatorResult (System.Collections.Generic.IDictionary<string,string> properties);
new Microsoft.Maui.Authentication.WebAuthenticatorResult : System.Collections.Generic.IDictionary<string, string> -> Microsoft.Maui.Authentication.WebAuthenticatorResult
Public Sub New (properties As IDictionary(Of String, String))

매개 변수

properties
IDictionary<String,String>

통합할 속성의 사전입니다.

적용 대상

WebAuthenticatorResult(Uri)

Source:
WebAuthenticatorResult.shared.cs
Source:
WebAuthenticatorResult.shared.cs

URI의 쿼리 문자열 매개 변수를 구문 분석하여 클래스의 WebAuthenticatorResult 새 instance 초기화합니다.

public:
 WebAuthenticatorResult(Uri ^ uri);
public WebAuthenticatorResult (Uri uri);
new Microsoft.Maui.Authentication.WebAuthenticatorResult : Uri -> Microsoft.Maui.Authentication.WebAuthenticatorResult
Public Sub New (uri As Uri)

매개 변수

uri
Uri

인증 시퀀스를 종료하는 데 사용된 콜백 URI입니다.

적용 대상

WebAuthenticatorResult(Uri, IWebAuthenticatorResponseDecoder)

Source:
WebAuthenticatorResult.shared.cs
Source:
WebAuthenticatorResult.shared.cs

URI의 쿼리 문자열 매개 변수를 구문 분석하여 클래스의 WebAuthenticatorResult 새 instance 초기화합니다.

public:
 WebAuthenticatorResult(Uri ^ uri, Microsoft::Maui::Authentication::IWebAuthenticatorResponseDecoder ^ responseDecoder);
public WebAuthenticatorResult (Uri uri, Microsoft.Maui.Authentication.IWebAuthenticatorResponseDecoder responseDecoder);
new Microsoft.Maui.Authentication.WebAuthenticatorResult : Uri * Microsoft.Maui.Authentication.IWebAuthenticatorResponseDecoder -> Microsoft.Maui.Authentication.WebAuthenticatorResult
Public Sub New (uri As Uri, responseDecoder As IWebAuthenticatorResponseDecoder)

매개 변수

uri
Uri

인증 시퀀스를 종료하는 데 사용된 콜백 URI입니다.

responseDecoder
IWebAuthenticatorResponseDecoder

콜백 URI를 디코딩하는 데 사용할 수 있는 디코더입니다.

설명

responseDecoder가 null이 아닌 경우 권한 부여 서비스에서 반환된 조각 또는 쿼리 문자열을 디코딩하는 데 사용됩니다. 그렇지 않으면 기본 응답 디코더가 사용됩니다.

적용 대상