Share via


RawUrl Property

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

Gets the URL information (without the host and port) requested by the client.

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

Syntax

'Declaration
Public ReadOnly Property RawUrl As String
public string RawUrl { get; }
public:
property String^ RawUrl {
    String^ get ();
}
member RawUrl : string with get
function get RawUrl () : String

Property Value

Type: System. . :: . .String
A String that contains the raw URL for this request.

Remarks

The raw URL is defined as the part of the URL following the domain information. In the URL string https://www.contoso.com/articles/recent.aspx, the raw URL is /articles/recent.aspx. The raw URL includes the query string, if present.

To obtain the host and port information, use the RemoteEndPoint property.

.NET Framework Security

See Also

Reference

HttpListenerRequest Class

System.Net Namespace