HttpRequest.ContentType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置传入请求的 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
属性值
表示传入请求的 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