2 instantiations of WebAuthenticatorResult
Microsoft.Maui.Essentials (2)
WebAuthenticator\AppleSignInAuthenticator.ios.cs (1)
52
var appleAccount = new
WebAuthenticatorResult
();
WebAuthenticator\WebAuthenticator.ios.tvos.cs (1)
185
tcsResponse.TrySetResult(new
WebAuthenticatorResult
(uri, currentOptions?.ResponseDecoder));
17 references to WebAuthenticatorResult
Microsoft.Maui.Essentials (17)
WebAuthenticator\AppleSignInAuthenticator.ios.cs (2)
15
public async Task<
WebAuthenticatorResult
> AuthenticateAsync(AppleSignInAuthenticator.Options options)
52
var
appleAccount = new WebAuthenticatorResult();
WebAuthenticator\AppleSignInAuthenticator.shared.cs (4)
15
/// <returns>A <see cref="
WebAuthenticatorResult
"/> object with the results of this operation.</returns>
16
Task<
WebAuthenticatorResult
> AuthenticateAsync(AppleSignInAuthenticator.Options? options = null);
29
/// <returns>A <see cref="
WebAuthenticatorResult
"/> object with the results of this operation.</returns>
30
public static Task<
WebAuthenticatorResult
> AuthenticateAsync(AppleSignInAuthenticator.Options? options = null)
WebAuthenticator\WebAuthenticator.ios.tvos.cs (3)
29
TaskCompletionSource<
WebAuthenticatorResult
> tcsResponse;
39
public async Task<
WebAuthenticatorResult
> AuthenticateAsync(WebAuthenticatorOptions webAuthenticatorOptions)
53
tcsResponse = new TaskCompletionSource<
WebAuthenticatorResult
>();
WebAuthenticator\WebAuthenticator.shared.cs (5)
20
/// <returns>A <see cref="
WebAuthenticatorResult
"/> object with the results of this operation.</returns>
27
Task<
WebAuthenticatorResult
> AuthenticateAsync(WebAuthenticatorOptions webAuthenticatorOptions);
81
public static Task<
WebAuthenticatorResult
> AuthenticateAsync(Uri url, Uri callbackUrl)
90
public static Task<
WebAuthenticatorResult
> AuthenticateAsync(WebAuthenticatorOptions webAuthenticatorOptions)
131
public static Task<
WebAuthenticatorResult
> AuthenticateAsync(this IWebAuthenticator webAuthenticator, Uri url, Uri callbackUrl) =>
WebAuthenticator\WebAuthenticatorResult.shared.cs (3)
16
/// Initializes a new instance of the <see cref="
WebAuthenticatorResult
"/> class.
23
/// Initializes a new instance of the <see cref="
WebAuthenticatorResult
"/> class by parsing a URI's query string parameters.
31
/// Initializes a new instance of the <see cref="
WebAuthenticatorResult
"/> class by parsing a URI's query string parameters.