The BaseHttpHandler type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| BaseHttpHandler | DotNetNuke.Framework.BaseHttpHandler |
Methods
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| HandleRequest |
Handles the request. This is where you put your
business logic.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ProcessRequest |
Processs the incoming HTTP request.
| |
| RespondFileNotFound |
Helper method used to Respond to the request
that the file was not found.
| |
| RespondForbidden |
Helper method used to Respond to the request
that the request in attempting to access a resource
that the user does not have access to.
| |
| RespondInternalError |
Helper method used to Respond to the request
that an error occurred in processing the request.
| |
| SetResponseCachePolicy |
Sets the cache policy. Unless a handler overrides
this method, handlers will not allow a respons to be
cached.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| ValidateParameters |
Validates the parameters. Inheriting classes must
implement this and return true if the parameters are
valid, otherwise false.
|
Extension Methods
| Name | Description | |
|---|---|---|
| ToJson |
Extension method on object that serializes the value to Json.
Note the type must be marked Serializable or include a DataContract attribute.
(Defined by JsonExtensionsWeb.) |
Properties
| Name | Description | |
|---|---|---|
| Content |
Gets the string representation of the body of the incoming request.
| |
| ContentEncoding |
Gets the content encoding for the response object.
| |
| ContentMimeType |
Gets the content MIME type for the response object.
| |
| Context |
Returns the HttpContext object for the incoming HTTP request.
| |
| HasPermission |
Gets a value indicating whether the requester
has the necessary permissions.
| |
| IsReusable | ||
| Request |
Returns the HttpRequest object for the incoming HTTP request.
| |
| RequiresAuthentication |
Gets a value indicating whether this handler
requires users to be authenticated.
| |
| Response |
Gets the HttpResponse object associated with the Page object. This object
allows you to send HTTP response data to a client and contains information about that response.
|