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)
415return (ExceptionDispatchInfo.SetCurrentStackTrace(new ObjectDisposedException(typeof(SmtpClient).FullName)), true);
System\Net\Mail\SmtpConnection.cs (2)
29private readonly SmtpClient? _client; 39internal SmtpConnection(SmtpTransport parent, SmtpClient client, ICredentialsByHost? credentials, ISmtpAuthenticationModule[] authenticationModules)
System\Net\Mail\SmtpTransport.cs (3)
20private readonly SmtpClient _client; 27internal SmtpTransport(SmtpClient client) : this(client, SmtpAuthenticationManager.GetModules()) 31internal SmtpTransport(SmtpClient client, ISmtpAuthenticationModule[] authenticationModules)