Amib.Threading.Internal.WorkItem.SetResult C# (CSharp) Method

SetResult() private method

Set the result of the work item to return
private SetResult ( object result, Exception exception ) : void
result object The result of the work item
exception System.Exception The exception that was throw while the workitem executed, null /// if there was no exception.
return void
        internal void SetResult(object result, Exception exception)
        {
            _result = result;
            _exception = exception;
            SignalComplete(false);
        }