HttpListenerRequest.RawUrl Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene le informazioni sull'URL (senza host e porta) richieste dal client.
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
Valore della proprietà
Classe String contenente l'URL non elaborato per questa richiesta.
Esempio
Nell'esempio di codice seguente viene illustrato l'utilizzo della RawUrl proprietà .
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
Commenti
L'URL non elaborato viene definito come parte dell'URL che segue le informazioni sul dominio. Nella stringa http://www.contoso.com/articles/recent.aspx
URL l'URL non elaborato è /articles/recent.aspx
. L'URL non elaborato include la stringa di query, se presente.
Per ottenere le informazioni sull'host e sulla porta, utilizzare la RemoteEndPoint proprietà .