System.Net.Security.SslState.BeginShutdown C# (CSharp) 메소드

BeginShutdown() 개인적인 메소드

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

Usage Example

예제 #1
0
 internal virtual IAsyncResult BeginShutdown(AsyncCallback asyncCallback, object asyncState)
 {
     return(_sslState.BeginShutdown(asyncCallback, asyncState));
 }