Udostępnij za pośrednictwem


HttpRequest.HttpMethod Właściwość

Definicja

Pobiera metodę transferu danych HTTP (taką jak GET, POSTlub HEAD) używaną przez klienta.

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

Wartość właściwości

String

Metoda transferu danych HTTP używana przez klienta.

Przykłady

Poniższy przykład kodu używa HtmlEncode metody do kodowania HTML wartości HttpMethod właściwości i WriteLine metody w celu zapisania zakodowanej wartości w pliku. Ten przykład kodu jest częścią większego przykładu podanego HttpRequest dla klasy.

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

W poniższym przykładzie przedstawiono dane wyjściowe generowane przez ten kod.

GET

127.0.0.1

127.0.0.1

GET

Dotyczy