10 references to Alert
System.Net.Security (10)
System\Net\Security\SslStream.IO.cs (2)
363
if (_lastFrame.Header.Type == TlsContentType.
Alert
&& _lastFrame.AlertDescription != TlsAlertDescription.CloseNotify &&
423
case TlsContentType.
Alert
:
System\Net\Security\TlsFrameHelper.cs (8)
154
private static readonly byte[] s_protocolMismatch13 = new byte[] { (byte)TlsContentType.
Alert
, 3, 4, 0, 2, 2, 70 };
155
private static readonly byte[] s_protocolMismatch12 = new byte[] { (byte)TlsContentType.
Alert
, 3, 3, 0, 2, 2, 70 };
156
private static readonly byte[] s_protocolMismatch11 = new byte[] { (byte)TlsContentType.
Alert
, 3, 2, 0, 2, 2, 70 };
157
private static readonly byte[] s_protocolMismatch10 = new byte[] { (byte)TlsContentType.
Alert
, 3, 1, 0, 2, 2, 70 };
158
private static readonly byte[] s_protocolMismatch30 = new byte[] { (byte)TlsContentType.
Alert
, 3, 0, 0, 2, 2, 40 };
241
if (info.Header.Type == TlsContentType.
Alert
)
306
if (frame.Length < 7 || frame[0] != (byte)TlsContentType.
Alert
)
343
byte[] buffer = new byte[] { (byte)TlsContentType.
Alert
, 3, 3, 0, 2, 2, (byte)reason };