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

QueueRenegotiate() public method

Queues a renegotiation request.
Use the QueueRenegotiate function with caution. Some SSL/TLS clients or server do not support renegotiation. For instance, requesting a renegotiation in the middle of sending a HTTP request to a MS IIS server causes the connection to be shut down. Renegotiations should only be used when a small private key [512 bits] is used and the connection is active for a long period of time.
An operating system error occurs while accessing the SecureSocket.
public QueueRenegotiate ( ) : void
return void
		public void QueueRenegotiate() {
			if (!Connected)
				throw new SocketException();
			m_Controller.QueueRenegotiate();
		}
		/// <summary>