This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.

Syntax

C# Copy imageCopy Code
                                  public abstract class BaseHttpHandler
Visual Basic (Declaration) Copy imageCopy Code
                                  Public MustInherit Class BaseHttpHandler

The type exposes the following members.

Protected Constructors

  Name Description
Protected method BaseHttpHandler
Creates a new BaseHttpHandler instance.

Public Methods

  Name Description
Public method Equals (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method HandleRequest
Handles the request. This is where you put your business logic.
Public method ProcessRequest
Processs the incoming HTTP request.
Public method SetResponseCachePolicy
Sets the cache policy. Unless a handler overrides this method, handlers will not allow a respons to be cached.
Public method ToString (Inherited from Object.)
Public method ValidateParameters
Validates the parameters. Inheriting classes must implement this and return true if the parameters are valid, otherwise false.

Protected Methods

  Name Description
Protected method Finalize (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Protected method Static member RespondFileNotFound
Helper method used to Respond to the request that the file was not found.
Protected method Static member RespondInternalError
Helper method used to Respond to the request that an error occurred in processing the request.

Public Properties

  Name Description
Public property IsReusable
Indicates whether or not this handler can be reused between successive requests.

See Also

Advanced