Syntax

C#
public interface IRequest

The type exposes the following members.

Public Methods

  NameDescription
Public methodBinaryRead
Reads the request data as a byte array.
Public methodReadCookie
Reads the cookie.
Public methodValidateInput
Validates the input.

Public Properties

  NameDescription
Public propertyFilePath
Gets the file path.
Public propertyFiles
Gets the HttpPostedFile per key.
Public propertyForm
Gets the form.
Public propertyHeaders
Gets the Http headers.
Public propertyHttpMethod
Gets the HTTP method.
Public propertyIsLocal
Gets a value indicating whether this requeest is from a local address.
Public propertyItem
Gets the param with the specified key.
Public propertyParams
Gets the params which accumulates headers, post, querystring and cookies.
Public propertyQueryString
Gets the query string.
Public propertyRawUrl
Gets the raw URL.
Public propertyUri
Gets the URI.
Public propertyUserHostAddress
Gets the IP host address of the remote client.
Public propertyUserLanguages
Gets the user languages.

See Also