Org.Mentalis.Security.Ssl.SecureSocket.OnShutdown C# (CSharp) Method

OnShutdown() private method

Called when the shutdown data has been sent to the remote server.
private OnShutdown ( IAsyncResult ar ) : void
ar IAsyncResult An instance.
return 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>