Opc.Ua.EndpointBase.ProcessRequestAsyncResult.ProcessRequestAsyncResult C# (CSharp) Method

ProcessRequestAsyncResult() public method

Initializes a new instance of the ProcessRequestAsyncResult class.
public ProcessRequestAsyncResult ( EndpointBase endpoint, AsyncCallback callback, object callbackData, int timeout ) : System
endpoint EndpointBase The endpoint being called.
callback AsyncCallback The callback to use when the operation completes.
callbackData object The callback data.
timeout int The timeout in milliseconds
return System
            public ProcessRequestAsyncResult(
                EndpointBase endpoint,
                AsyncCallback callback,
                object callbackData,
                int timeout)
            :
                base(callback, callbackData, timeout)
            {
                m_endpoint = endpoint;
            }
            #endregion