Freigeben über


WebRequestInformation.RequestPath Eigenschaft

Definition

Ruft den physikalischen Pfad der Webanforderung ab.

public:
 property System::String ^ RequestPath { System::String ^ get(); };
public string RequestPath { get; }
member this.RequestPath : string
Public ReadOnly Property RequestPath As String

Eigenschaftswert

Der physikalische Pfad der Anforderung.

Beispiele

Das folgende Codebeispiel zeigt, wie Sie den Webanforderungspfad abrufen.

// Get the request path.
public string GetRequestPath()
{
    // Get the request path.
    return (string.Format(
        "Request path: {0}",
        RequestInformation.RequestPath));
}
' Get the request path.
Public Function GetRequestPath() As String
   ' Get the request path.
     Return String.Format( _
     "Request path: {0}", RequestInformation.RequestPath)
End Function 'GetRequestPath

Gilt für: