1 write to _tcpClient
System.Net.Mail (1)
System\Net\Mail\SmtpConnection.cs (1)
45
_tcpClient
= new TcpClient();
8 references to _tcpClient
System.Net.Mail (8)
System\Net\Mail\SmtpConnection.cs (8)
83
_tcpClient
!.Connect(host, port);
84
_stream =
_tcpClient
.GetStream();
89
await
_tcpClient
!.ConnectAsync(host, port).ConfigureAwait(false);
90
_stream =
_tcpClient
.GetStream();
253
if (!_isClosed &&
_tcpClient
!= null)
265
_tcpClient
.LingerState = new LingerOption(true, 0);
270
_tcpClient
.Client.Blocking = false;
278
_tcpClient
.Dispose();