WwwAuthenticateParameters.CreateFromResponseHeaders Method

Definition

Caution

This api is now obsolete and has been replaced with CreateFromAuthenticationHeaders(...)

Create WWW-Authenticate parameters from the HttpResponseHeaders.

[System.Obsolete("This api is now obsolete and has been replaced with CreateFromAuthenticationHeaders(...)")]
public static Microsoft.Identity.Client.WwwAuthenticateParameters CreateFromResponseHeaders (System.Net.Http.Headers.HttpResponseHeaders httpResponseHeaders, string scheme = "Bearer");
[<System.Obsolete("This api is now obsolete and has been replaced with CreateFromAuthenticationHeaders(...)")>]
static member CreateFromResponseHeaders : System.Net.Http.Headers.HttpResponseHeaders * string -> Microsoft.Identity.Client.WwwAuthenticateParameters
Public Shared Function CreateFromResponseHeaders (httpResponseHeaders As HttpResponseHeaders, Optional scheme As String = "Bearer") As WwwAuthenticateParameters

Parameters

httpResponseHeaders
HttpResponseHeaders

HttpResponseHeaders.

scheme
String

Authentication scheme. Default is "Bearer".

Returns

The parameters requested by the web API.

Attributes

Remarks

Currently it only supports the Bearer scheme

Applies to