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)
89
if ((
_supportedAuth
& SupportedAuth.Login) > 0)
96
if ((
_supportedAuth
& SupportedAuth.GSSAPI) > 0)
105
if ((!_sawNegotiate && (
_supportedAuth
& SupportedAuth.NTLM) > 0))