示例#1
0
        private void InvokeEncryptionProtocolNegotiated(SslProtocols protocol, int strength)
        {
            var handler = EncryptionProtocolNegotiated;

            if (handler != null)
            {
                var e = new EncryptionProtocolNegotiatedEventArgs(protocol, strength);
                handler(this, e);
            }
        }
示例#2
0
 private void InvokeEncryptionProtocolNegotiated(SslProtocols protocol, int strength)
 {
     var handler = EncryptionProtocolNegotiated;
     if (handler != null) {
         var e = new EncryptionProtocolNegotiatedEventArgs(protocol, strength);
         handler(this, e);
     }
 }