Svg.Web.SvgHandler.SvgAsyncRenderState.CompleteRequest C# (CSharp) Method

CompleteRequest() private method

Indicates that the rendering is complete and the waiting thread may proceed.
private CompleteRequest ( ) : void
return void
            internal void CompleteRequest()
            {
                _isCompleted = true;
                lock (this)
                {
                    if (this.AsyncWaitHandle != null)
                    {
                        this._callCompleteEvent.Set();
                    }
                }
                // if a callback was registered, invoke it now
                if (_callback != null)
                {
                    _callback(this);
                }
            }
SvgHandler.SvgAsyncRenderState