internal TlsException( AlertLevel level, AlertDescription description, string message) : base (message) { this.alert = new Alert(level, description); }
public void SendAlert(Alert alert) { AlertLevel level; AlertDescription description; bool close; if (alert == null) { DebugHelper.WriteLine(">>>> Write Alert NULL"); level = AlertLevel.Fatal; description = AlertDescription.InternalError; close = true; } else { DebugHelper.WriteLine(">>>> Write Alert ({0}|{1})", alert.Description, alert.Message); level = alert.Level; description = alert.Description; close = alert.IsCloseNotify; } // Write record this.SendRecord (ContentType.Alert, new byte[2] { (byte) level, (byte) description }); if (close) { this.context.ConnectionEnd = true; } }