6 writes to _supportedAuth
System.Net.Mail (6)
System\Net\Mail\SmtpConnection.Auth.cs (4)
45_supportedAuth = SupportedAuth.None; 58_supportedAuth |= SupportedAuth.Login; 62_supportedAuth |= SupportedAuth.NTLM; 66_supportedAuth |= SupportedAuth.GSSAPI;
System\Net\Mail\SmtpConnection.cs (2)
220_supportedAuth = SupportedAuth.Login; 643_connection._supportedAuth = SupportedAuth.Login;
3 references to _supportedAuth
System.Net.Mail (3)
System\Net\Mail\SmtpConnection.Auth.cs (3)
89if ((_supportedAuth & SupportedAuth.Login) > 0) 96if ((_supportedAuth & SupportedAuth.GSSAPI) > 0) 105if ((!_sawNegotiate && (_supportedAuth & SupportedAuth.NTLM) > 0))