Inheritance: IPipe, IDisposable
コード例 #1
0
 public TcpPipe(IPAddress address, int port)
 {
     this.sender = new TcpSenderPipe(address, port);
     this.sender.Run();
 }
コード例 #2
0
ファイル: TcpPipe.cs プロジェクト: peschuster/graphite-client
 public TcpPipe(IPAddress address, int port)
 {
     this.sender = new TcpSenderPipe(address, port);
     this.sender.Run();
 }