HttpRequest.RequestType Proprietà

Definizione

Ottiene o imposta il metodo di trasferimento dei dati HTTP (GET o POST) usato dal client.

public:
 property System::String ^ RequestType { System::String ^ get(); void set(System::String ^ value); };
public string RequestType { get; set; }
member this.RequestType : string with get, set
Public Property RequestType As String

Valore della proprietà

Stringa che rappresenta il tipo di chiamata HTTP inviata dal client.

Esempio

Nell'esempio di codice seguente viene usato il metodo per codificare HTML il HtmlEncode valore della RequestType proprietà e il WriteLine metodo per scrivere il valore codificato nel file. Questo esempio di codice fa parte di un esempio più grande fornito per la HttpRequest classe.

// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.RequestType));
sw.WriteLine(Server.HtmlEncode(Request.UserHostAddress));
sw.WriteLine(Server.HtmlEncode(Request.UserHostName));
sw.WriteLine(Server.HtmlEncode(Request.HttpMethod));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.RequestType))
sw.WriteLine(Server.HtmlEncode(Request.UserHostAddress))
sw.WriteLine(Server.HtmlEncode(Request.UserHostName))
sw.WriteLine(Server.HtmlEncode(Request.HttpMethod))

Si applica a