Partager via


WebRequestInformation.RequestPath Propriété

Définition

Obtient le chemin d'accès physique de la demande Web.

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

Valeur de propriété

Chemin d'accès physique de la demande.

Exemples

L’exemple de code suivant montre comment obtenir le chemin d’accès de la requête web.

// 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

S’applique à