Renci.SshNet.Common.AsyncResult.AsyncResult C# (CSharp) Method

AsyncResult() protected method

Initializes a new instance of the AsyncResult class.
protected AsyncResult ( AsyncCallback asyncCallback, object state ) : System
asyncCallback AsyncCallback The async callback.
state object The state.
return System
        protected AsyncResult(AsyncCallback asyncCallback, object state)
        {
            _asyncCallback = asyncCallback;
            _asyncState = state;
        }