Share via


AuthRequestParams Constructors

Definition

Overloads

AuthRequestParams(String, String)

Creates an AuthRequestParams object with responseType and clientId parameters.

AuthRequestParams(String, String, Uri)

Creates an AuthRequestParams object with responseType, clientId, and redirectUri parameters provided.

AuthRequestParams(String, String)

Creates an AuthRequestParams object with responseType and clientId parameters.

public:
 AuthRequestParams(Platform::String ^ responseType, Platform::String ^ clientId);
 AuthRequestParams(winrt::hstring const& responseType, winrt::hstring const& clientId);
public AuthRequestParams(string responseType, string clientId);
function AuthRequestParams(responseType, clientId)
Public Sub New (responseType As String, clientId As String)

Parameters

responseType
String

Platform::String

winrt::hstring

The response type for the request.

clientId
String

Platform::String

winrt::hstring

The client ID for the request.

Applies to

AuthRequestParams(String, String, Uri)

Creates an AuthRequestParams object with responseType, clientId, and redirectUri parameters provided.

public:
 AuthRequestParams(Platform::String ^ responseType, Platform::String ^ clientId, Uri ^ redirectUri);
 AuthRequestParams(winrt::hstring const& responseType, winrt::hstring const& clientId, Uri const& redirectUri);
public AuthRequestParams(string responseType, string clientId, System.Uri redirectUri);
function AuthRequestParams(responseType, clientId, redirectUri)
Public Sub New (responseType As String, clientId As String, redirectUri As Uri)

Parameters

responseType
String

Platform::String

winrt::hstring

The response type for the request.

clientId
String

Platform::String

winrt::hstring

The client ID for the request.

redirectUri
Uri Uri

The redirect URI for the request.

Applies to