OpenSSL.SSL.SslStreamBase.RenegotiationWriteCallback C# (CSharp) 메소드

RenegotiationWriteCallback() 개인적인 메소드

private RenegotiationWriteCallback ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
리턴 void
		private void RenegotiationWriteCallback(IAsyncResult asyncResult)
		{
			InternalAsyncResult readwriteAsyncResult = (InternalAsyncResult)asyncResult.AsyncState;

			innerStream.EndWrite(asyncResult);

			// Now start the read with the original asyncresult, as the ssl.Read will handle the renegoiation
			InternalBeginRead(readwriteAsyncResult);
		}