WebAuthenticationBroker.AuthenticateAndContinue Method

Definition

Overloads

AuthenticateAndContinue(Uri)

Starts the authentication operation with one input.

AuthenticateAndContinue(Uri, Uri)

Starts the authentication operation with two inputs.

AuthenticateAndContinue(Uri, Uri, ValueSet, WebAuthenticationOptions)

Starts the authentication operation with four inputs.

AuthenticateAndContinue(Uri)

Starts the authentication operation with one input.

public:
 static void AuthenticateAndContinue(Uri ^ requestUri);
/// [Windows.Foundation.Metadata.Overload("AuthenticateAndContinue")]
 static void AuthenticateAndContinue(Uri const& requestUri);
[Windows.Foundation.Metadata.Overload("AuthenticateAndContinue")]
public static void AuthenticateAndContinue(System.Uri requestUri);
function authenticateAndContinue(requestUri)
Public Shared Sub AuthenticateAndContinue (requestUri As Uri)

Parameters

requestUri
Uri Uri

The starting URI of the web service. This URI must be a secure address of https://.

Attributes

See also

Applies to

AuthenticateAndContinue(Uri, Uri)

Starts the authentication operation with two inputs.

public:
 static void AuthenticateAndContinue(Uri ^ requestUri, Uri ^ callbackUri);
/// [Windows.Foundation.Metadata.Overload("AuthenticateWithCallbackUriAndContinue")]
 static void AuthenticateAndContinue(Uri const& requestUri, Uri const& callbackUri);
[Windows.Foundation.Metadata.Overload("AuthenticateWithCallbackUriAndContinue")]
public static void AuthenticateAndContinue(System.Uri requestUri, System.Uri callbackUri);
function authenticateAndContinue(requestUri, callbackUri)
Public Shared Sub AuthenticateAndContinue (requestUri As Uri, callbackUri As Uri)

Parameters

requestUri
Uri Uri

The starting URI of the web service. This URI must be a secure address of https://.

callbackUri
Uri Uri

The callback URI that indicates the completion of the web authentication. The broker matches this URI against every URI that it is about to navigate to. The broker never navigates to this URI, instead the broker returns the control back to the application when the user clicks a link or a web server redirection is made.

Attributes

See also

Applies to

AuthenticateAndContinue(Uri, Uri, ValueSet, WebAuthenticationOptions)

Starts the authentication operation with four inputs.

public:
 static void AuthenticateAndContinue(Uri ^ requestUri, Uri ^ callbackUri, ValueSet ^ continuationData, WebAuthenticationOptions options);
/// [Windows.Foundation.Metadata.Overload("AuthenticateWithCallbackUriContinuationDataAndOptionsAndContinue")]
 static void AuthenticateAndContinue(Uri const& requestUri, Uri const& callbackUri, ValueSet const& continuationData, WebAuthenticationOptions const& options);
[Windows.Foundation.Metadata.Overload("AuthenticateWithCallbackUriContinuationDataAndOptionsAndContinue")]
public static void AuthenticateAndContinue(System.Uri requestUri, System.Uri callbackUri, ValueSet continuationData, WebAuthenticationOptions options);
function authenticateAndContinue(requestUri, callbackUri, continuationData, options)
Public Shared Sub AuthenticateAndContinue (requestUri As Uri, callbackUri As Uri, continuationData As ValueSet, options As WebAuthenticationOptions)

Parameters

requestUri
Uri Uri

The starting URI of the web service. This URI must be a secure address of https://.

callbackUri
Uri Uri

The callback URI that indicates the completion of the web authentication. The broker matches this URI against every URI that it is about to navigate to. The broker never navigates to this URI, instead the broker returns the control back to the application when the user clicks a link or a web server redirection is made.

continuationData
ValueSet

Continuation data to be passed as part of the authentication operation.

options
WebAuthenticationOptions

The options for the authentication operation.

Attributes

See also

Applies to