WebAuthenticationBroker.AuthenticateAndContinue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
The starting URI of the web service. This URI must be a secure address of https://.
- Attributes
See also
- AuthenticateAndContinue(Uri, Uri)
- AuthenticateAndContinue(Uri, Uri, ValueSet, WebAuthenticationOptions)
- Web authentication broker
- How to continue your Windows Phone 8.x app after calling an AndContinue method
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
The starting URI of the web service. This URI must be a secure address of https://.
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
- AuthenticateAndContinue(Uri)
- AuthenticateAndContinue(Uri, Uri, ValueSet, WebAuthenticationOptions)
- Web authentication broker
- How to continue your Windows Phone 8.x app after calling an AndContinue method
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
The starting URI of the web service. This URI must be a secure address of https://.
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
- AuthenticateAndContinue(Uri)
- AuthenticateAndContinue(Uri, Uri)
- Web authentication broker
- How to continue your Windows Phone 8.x app after calling an AndContinue method