HttpChallengeHeaderValue Constructors

Definition

Overloads

HttpChallengeHeaderValue(String)

Initializes a new instance of the HttpChallengeHeaderValue class with the scheme to use for authorization.

HttpChallengeHeaderValue(String, String)

Initializes a new instance of the HttpChallengeHeaderValue class with the scheme to use for authorization and the SPNEGO token.

HttpChallengeHeaderValue(String)

Initializes a new instance of the HttpChallengeHeaderValue class with the scheme to use for authorization.

public:
 HttpChallengeHeaderValue(Platform::String ^ scheme);
 HttpChallengeHeaderValue(winrt::hstring const& scheme);
public HttpChallengeHeaderValue(string scheme);
function HttpChallengeHeaderValue(scheme)
Public Sub New (scheme As String)

Parameters

scheme
String

Platform::String

winrt::hstring

The scheme to use for authorization.

See also

Applies to

HttpChallengeHeaderValue(String, String)

Initializes a new instance of the HttpChallengeHeaderValue class with the scheme to use for authorization and the SPNEGO token.

public:
 HttpChallengeHeaderValue(Platform::String ^ scheme, Platform::String ^ token);
 HttpChallengeHeaderValue(winrt::hstring const& scheme, winrt::hstring const& token);
public HttpChallengeHeaderValue(string scheme, string token);
function HttpChallengeHeaderValue(scheme, token)
Public Sub New (scheme As String, token As String)

Parameters

scheme
String

Platform::String

winrt::hstring

The scheme to use for authorization.

token
String

Platform::String

winrt::hstring

The SPNEGO token to use with the Negotiate protocol scheme.

See also

Applies to