Class AjaxUploaderHandler
IHttpHandler that serves embedded JS/CSS resources and handles upload endpoints. Register in web.config: <system.webServer> <handlers> <add name="AjaxUploader" path="ajaxupload.axd" verb="*" type="AjaxUploader.AjaxUploaderHandler, AjaxUploader" /> </handlers> </system.webServer>
Implements
Inherited Members
Namespace: AjaxUploader
Assembly: AjaxUploader.dll
Syntax
public class AjaxUploaderHandler : IHttpHandler
Properties
IsReusable
Gets a value indicating whether the handler instance can be reused for multiple requests.
Declaration
public bool IsReusable { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Methods
ProcessRequest(HttpContext)
Processes an incoming handler request and dispatches it to resource, upload, chunk, validation, progress, file-info, download, or delete endpoints based on the request path and method.
Declaration
public void ProcessRequest(HttpContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| HttpContext | context |