SmtpSecureSocketPreset.cs 239 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 namespace Yi.Framework.Rbac.Domain.Shared.Enums; /// <summary> /// Preset for MailKit secure socket negotiation when sending mail. /// </summary> public enum SmtpSecureSocketPreset { StartTls = 0, SslOnConnect = 1, Auto = 2 }