System.Net.Security.SslState.BeginShutdown C# (CSharp) Method

BeginShutdown() private method

private BeginShutdown ( AsyncCallback asyncCallback, object asyncState ) : IAsyncResult
asyncCallback AsyncCallback
asyncState object
return IAsyncResult
        internal IAsyncResult BeginShutdown(AsyncCallback asyncCallback, object asyncState)
        {
            throw new NotImplementedException();
        }

Usage Example

Ejemplo n.º 1
0
 internal virtual IAsyncResult BeginShutdown(AsyncCallback asyncCallback, object asyncState)
 {
     return(_sslState.BeginShutdown(asyncCallback, asyncState));
 }