Org.Mentalis.Security.Ssl.SecureSocket.OnShutdown C# (CSharp) Méthode

OnShutdown() private méthode

Called when the shutdown data has been sent to the remote server.
private OnShutdown ( IAsyncResult ar ) : void
ar IAsyncResult An instance.
Résultat void
		private void OnShutdown(IAsyncResult ar) {
			try {
				m_Controller.EndShutdown(ar);
			} catch {
				// eat exceptions; we don't throw them in Socket.EndShutdown [not really important]
				// m_ShutdownResult.AsyncException = e;
			}
			m_ShutdownResult.Notify();
		}
		/// <summary>