HttpWebRequest.Address Property
Assembly: System (in system.dll)
/** @property */ public Uri get_Address ()
public function get Address () : Uri
Property Value
A Uri that identifies the Internet resource that actually responds to the request. The default is the URI used by the WebRequest.Create method to initialize the request.The Address property is set to the URI after any redirections that happen during the request are complete.
The URI of the original request is kept in the RequestUri property.
The following code example checks to see if the HttpWebRequest object req was redirected to another location to fulfill the request, and sets the value of the hasChanged variable to true if the request was redirected; otherwise hasChanged is set to false.
boolean hasChanged = ((req.get_RequestUri().Equals(req.get_Address()))
== false);
var hasChanged : Boolean = (req.RequestUri.ToString() != req.Address.ToString())
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.