HttpListenerRequest.RawUrl 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得用戶端所要求的 URL 資訊 (不含主機和連接埠)。
public:
property System::String ^ RawUrl { System::String ^ get(); };
public string? RawUrl { get; }
public string RawUrl { get; }
member this.RawUrl : string
Public ReadOnly Property RawUrl As String
屬性值
String,包含這個要求的原始 URL。
範例
下列程式代碼範例示範如何使用 RawUrl 屬性。
public static void CheckTestUrl(HttpListener listener, HttpListenerRequest request)
{
if (request.RawUrl == "/www.contoso.com/test/NoReply")
{
listener.Abort ();
return;
}
}
Public Shared Sub CheckTestUrl(ByVal listener As HttpListener, ByVal request As HttpListenerRequest)
If request.RawUrl = "/www.contoso.com/test/NoReply" Then
listener.Abort()
Return
End If
End Sub
備註
原始 URL 會定義為在網域信息之後的 URL 的一部分。 在 URL 字串 http://www.contoso.com/articles/recent.aspx
中,原始 URL 為 /articles/recent.aspx
。 原始 URL 包含查詢字串,如果有的話。
若要取得主機和埠資訊,請使用 RemoteEndPoint 屬性。