Share via


ResponseUri Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets the URI of the Internet resource that responded to the request.

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Overrides ReadOnly Property ResponseUri As Uri
public override Uri ResponseUri { get; }
public:
virtual property Uri^ ResponseUri {
    Uri^ get () override;
}
abstract ResponseUri : Uri with get
override ResponseUri : Uri with get
override function get ResponseUri () : Uri

Property Value

Type: System. . :: . .Uri
A Uri that contains the URI of the Internet resource that responded to the request.

Remarks

The ResponseUri property contains the URI of the Internet resource that actually responded to the request. This URI might not be the same as the originally requested URI, if the original server redirected the request.

The ResponseUri property will use the Content-Location header if present.

Applications that need to access the last redirected ResponseUri should use the HttpWebRequest..::..Address property rather than ResponseUri, since the use of ResponseUri property may open security vulnerabilities.

.NET Framework Security

See Also

Reference

HttpWebResponse Class

System.Net Namespace