HttpRequest.ContentType 属性

定义

获取或设置传入请求的 MIME 内容类型。

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

属性值

String

表示传入请求的 MIME 内容类型的字符串,例如,“text/html”。 其他常见 MIME 类型包括“audio.wav”、“image/gif”和“application/pdf”。

示例

下面的代码示例将表示传入请求的内容类型的值分配给字符串变量。

String str;
 str = Request.ContentType;

Dim str As String
 str = Request.ContentType
   

以下示例显示此代码可能生成的输出。

GET

127.0.0.1

127.0.0.1

GET

适用于