HttpTaskAsyncHandler Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides methods that a derived task handler class can implement in order to process an asynchronous task.
public ref class HttpTaskAsyncHandler abstract : System::Web::IHttpAsyncHandler
public abstract class HttpTaskAsyncHandler : System.Web.IHttpAsyncHandler
type HttpTaskAsyncHandler = class
interface IHttpAsyncHandler
interface IHttpHandler
Public MustInherit Class HttpTaskAsyncHandler
Implements IHttpAsyncHandler
- Inheritance
-
HttpTaskAsyncHandler
- Implements
Remarks
The HttpTaskAsyncHandler class provides a simplified way to handle asynchronous tasks without having to implement the BeginProcessRequest and EndProcessRequest methods. To create a handler for an asynchronous task, you can override the ProcessRequestAsync method and implement custom task handling code.
Constructors
HttpTaskAsyncHandler() |
Called from constructors in derived classes to initialize the HttpTaskAsyncHandler class. |
Properties
IsReusable |
When overridden in a derived class, gets a value that indicates whether the task handler class instance can be reused for another asynchronous task. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ProcessRequest(HttpContext) |
When overridden in a derived class, provides code that handles a synchronous task. |
ProcessRequestAsync(HttpContext) |
When overridden in a derived class, provides code that handles an asynchronous task. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Explicit Interface Implementations
IHttpAsyncHandler.BeginProcessRequest(HttpContext, AsyncCallback, Object) |
Initiates asynchronous processing of a task in an HTTP task handler. |
IHttpAsyncHandler.EndProcessRequest(IAsyncResult) |
Ends asynchronous processing of a task in an HTTP task handler. |