Class MvcHandler
Base HTTP handler for the legacy MVC integration model.
Assembly: AjaxUploader.dll
Syntax
public abstract class MvcHandler : IHttpHandler
Properties
IsReusable
Gets a value indicating whether another request can use the IHttpHandler instance.
Declaration
public bool IsReusable { get; }
Property Value
Uploader
Declaration
public MvcUploader Uploader { get; }
Property Value
Methods
GetValidateOption()
Declaration
public abstract UploaderValidateOption GetValidateOption()
Returns
OnFileUploaded(MvcUploadFile)
Declaration
public abstract void OnFileUploaded(MvcUploadFile file)
Parameters
OnUploaderInit(MvcUploader)
Declaration
public abstract void OnUploaderInit(MvcUploader uploader)
Parameters
ProcessRequest(HttpContext)
Enables processing of HTTP Web requests by a custom HttpHandler that implements the IHttpHandler interface.
Declaration
public void ProcessRequest(HttpContext context)
Parameters
| Type |
Name |
Description |
| HttpContext |
context |
An HttpContext object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
|
SetServerData(string)
Declaration
public void SetServerData(string data)
Parameters
| Type |
Name |
Description |
| string |
data |
|
Implements