11 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 (9)
System\Net\Mail\SmtpClient.cs (4)
752
((
SmtpClient
)sender).SendCompleted -= handler;
783
((
SmtpClient
)s!).SendAsyncCancel();
882
SmtpClient
client = (
SmtpClient
)ar.AsyncState!;
System\Net\Mail\SmtpConnection.cs (2)
30
private readonly
SmtpClient
? _client;
40
internal SmtpConnection(SmtpTransport parent,
SmtpClient
client, ICredentialsByHost? credentials, ISmtpAuthenticationModule[] authenticationModules)
System\Net\Mail\SmtpTransport.cs (3)
19
private readonly
SmtpClient
_client;
28
internal SmtpTransport(
SmtpClient
client) : this(client, SmtpAuthenticationManager.GetModules())
32
internal SmtpTransport(
SmtpClient
client, ISmtpAuthenticationModule[] authenticationModules)