5 writes to _supportedAuth
System.Net.Mail (5)
System\Net\Mail\SmtpConnection.Auth.cs (4)
45
_supportedAuth
= SupportedAuth.None;
62
_supportedAuth
|= SupportedAuth.Login;
66
_supportedAuth
|= SupportedAuth.NTLM;
70
_supportedAuth
|= SupportedAuth.GSSAPI;
System\Net\Mail\SmtpConnection.cs (1)
143
_supportedAuth
= SupportedAuth.Login;
3 references to _supportedAuth
System.Net.Mail (3)
System\Net\Mail\SmtpConnection.Auth.cs (3)
93
if ((
_supportedAuth
& SupportedAuth.Login) > 0)
100
if ((
_supportedAuth
& SupportedAuth.GSSAPI) > 0)
109
if ((!_sawNegotiate && (
_supportedAuth
& SupportedAuth.NTLM) > 0))