Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ThrowIfDisposed()

void System.Net.Sockets.TcpClient.ThrowIfDisposed ( )
inlineprivate

Definition at line 465 of file TcpClient.cs.

466 {
467 if (Disposed)
468 {
469 ThrowObjectDisposedException();
470 }
471 void ThrowObjectDisposedException()
472 {
473 throw new ObjectDisposedException(GetType().FullName);
474 }
475 }

References System.Net.Sockets.TcpClient.Disposed, and System.FullName.

Referenced by System.Net.Sockets.TcpClient.Connect(), System.Net.Sockets.TcpClient.Connect(), System.Net.Sockets.TcpClient.Connect(), and System.Net.Sockets.TcpClient.GetStream().