8 references to SmtpClient
netstandard (1)
netstandard.cs (1)
1177
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Mail.
SmtpClient
))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
663
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Mail.
SmtpClient
))]
System.Net.Mail (6)
System\Net\Mail\SmtpClient.cs (1)
415
return (ExceptionDispatchInfo.SetCurrentStackTrace(new ObjectDisposedException(typeof(
SmtpClient
).FullName)), true);
System\Net\Mail\SmtpConnection.cs (2)
29
private readonly
SmtpClient
? _client;
39
internal SmtpConnection(SmtpTransport parent,
SmtpClient
client, ICredentialsByHost? credentials, ISmtpAuthenticationModule[] authenticationModules)
System\Net\Mail\SmtpTransport.cs (3)
20
private readonly
SmtpClient
_client;
27
internal SmtpTransport(
SmtpClient
client) : this(client, SmtpAuthenticationManager.GetModules())
31
internal SmtpTransport(
SmtpClient
client, ISmtpAuthenticationModule[] authenticationModules)