HttpRequest.HttpMethod 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取客户端使用的 HTTP 数据传输方法(如 GET
、POST
或 HEAD
)。
public:
property System::String ^ HttpMethod { System::String ^ get(); };
public string HttpMethod { get; }
member this.HttpMethod : string
Public ReadOnly Property HttpMethod As String
属性值
客户端所用的 HTTP 数据传输方法。
示例
下面的代码示例使用 HtmlEncode 方法对 属性的值 HttpMethod 进行 HTML 编码, WriteLine 并使用 方法将编码的值写入文件。 此代码示例是为 HttpRequest 类提供的一个更大示例的一部分。
// 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))
以下示例演示此代码生成的输出。
GET
127.0.0.1
127.0.0.1
GET