Manos.Mvc.AsyncResult.Complete C# (CSharp) Method

Complete() private method

private Complete ( ) : void
return void
        internal void Complete()
        {
            if (pendingContext != null && onComplete!=null)
            {
                try
                {
                    pendingContext.ProcessResult(onComplete());
                }
                catch (Exception x)
                {
                    ExceptionRenderer.RenderException(pendingContext.ManosContext, x, true);
                }
            }
        }