NSoft.NFramework.AbstractAsyncResult.AbstractAsyncResult C# (CSharp) Method

AbstractAsyncResult() protected method

protected AbstractAsyncResult ( object asyncState ) : System
asyncState object
return System
        protected AbstractAsyncResult(object asyncState) {
            AsyncState = asyncState;
            _asyncWaitHandler = new ManualResetEventSlim(false);

            if(IsDebugEnabled)
                log.Debug("AsyncResult 인스턴스가 생성되었습니다. asyncState=[{0}]", asyncState);
        }