HttpRequestHeaderCollection.ProxyAuthorization Property
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.
Gets or sets the HttpCredentialsHeaderValue object that represent the value of a Proxy-Authorization HTTP header on an HTTP request.
public:
property HttpCredentialsHeaderValue ^ ProxyAuthorization { HttpCredentialsHeaderValue ^ get(); void set(HttpCredentialsHeaderValue ^ value); };
HttpCredentialsHeaderValue ProxyAuthorization();
void ProxyAuthorization(HttpCredentialsHeaderValue value);
public HttpCredentialsHeaderValue ProxyAuthorization { get; set; }
var httpCredentialsHeaderValue = httpRequestHeaderCollection.proxyAuthorization;
httpRequestHeaderCollection.proxyAuthorization = httpCredentialsHeaderValue;
Public Property ProxyAuthorization As HttpCredentialsHeaderValue
Property Value
The object that represent the value of a Proxy-Authorization HTTP header on an HTTP request. A null value means that the header is absent.