コード例 #1
0
ファイル: HNode.cs プロジェクト: scottstamp/TanjiCore
 public void Connect(string host, int port)
 {
     Connect(HotelEndPoint.Parse(host, port));
 }
コード例 #2
0
 public void Intercept(string host, int port)
 {
     Intercept(HotelEndPoint.Parse(host, port));
 }
コード例 #3
0
ファイル: HNode.cs プロジェクト: scottstamp/TanjiCore
 public static HNode ConnectNew(string host, int port)
 {
     return(ConnectNew(HotelEndPoint.Parse(host, port)));
 }