C# Class Svg.Web.SvgHandler.SvgAsyncRenderState

Represents the state of a request for SVG rendering.
Inheritance: IAsyncResult
Mostra file Open project: prepare/HTML-Renderer

Public Methods

Method Description
SvgAsyncRenderState ( HttpContext context, AsyncCallback callback, object extraData ) : System

Initializes a new instance of the SvgAsyncRenderState class.

Private Methods

Method Description
CompleteRequest ( ) : void

Indicates that the rendering is complete and the waiting thread may proceed.

Method Details

SvgAsyncRenderState() public method

Initializes a new instance of the SvgAsyncRenderState class.
public SvgAsyncRenderState ( HttpContext context, AsyncCallback callback, object extraData ) : System
context System.Web.HttpContext The of the request.
callback AsyncCallback The delegate to be called when the rendering is complete.
extraData object The extra data.
return System