HttpRequest.RequestType 属性

定义

获取或设置客户端使用的 HTTP 数据传输方法(GETPOST)。

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

属性值

String

表示客户端发送的 HTTP 调用类型的字符串。

示例

下面的代码示例使用 HtmlEncode 该方法对属性的值 RequestType 进行 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))

适用于