NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpRequest.ContentType

MIME content type of incoming request.

[Visual Basic]
Public ReadOnly Property ContentType As String
[C#]
public string ContentType {get;}
[C++]
public: __property String* get_ContentType();
[JScript]
public function get ContentType() : String;

Property Value

A String representing MIME content type of incoming request.

Example

[Visual Basic]
<%-- This example receives a string representing the Content
Type into the variable sType --%>
<%
Dim sType
sType = Request.ContentType
%>

See Also

HttpRequest Class | HttpRequest Members | System.Web Namespace