本文整理匯總了C#中System.Net.Sockets.TcpClient.BeginConnect方法的典型用法代碼示例。如果您正苦於以下問題:C# TcpClient.BeginConnect方法的具體用法?C# TcpClient.BeginConnect怎麽用?C# TcpClient.BeginConnect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Net.Sockets.TcpClient
的用法示例。
在下文中一共展示了TcpClient.BeginConnect方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DoBeginConnect1
public static void DoBeginConnect1(string host, int port)
{
// Connect asynchronously to the specifed host.
TcpClient t = new TcpClient(AddressFamily.InterNetwork);
// IPAddress remoteHost = new IPAddress(host);
IPAddress[] remoteHost = Dns.GetHostAddresses(host);
connectDone.Reset();
Console.WriteLine("Establishing Connection to {0}",
remoteHost[0]);
t.BeginConnect(remoteHost[0], port,
new AsyncCallback(ConnectCallback), t);
// Wait here until the callback processes the connection.
connectDone.WaitOne();
Console.WriteLine("Connection established");
}
示例2: DoBeginConnect2
// Connect asynchronously to the specifed host.
public static void DoBeginConnect2(string host, int port)
{
TcpClient t = new TcpClient(AddressFamily.InterNetwork);
IPAddress[] remoteHost = Dns.GetHostAddresses(host);
connectDone.Reset();
Console.WriteLine("Establishing Connection to {0}", host);
t.BeginConnect(remoteHost, port,
new AsyncCallback(ConnectCallback), t);
// Wait here until the callback processes the connection.
connectDone.WaitOne();
Console.WriteLine("Connection established");
}
示例3: DoBeginConnect3
// Connect asynchronously to the specifed host.
public static void DoBeginConnect3(string host, int port)
{
TcpClient t = new TcpClient(AddressFamily.InterNetwork);
connectDone.Reset();
Console.WriteLine("Establishing Connection to {0}",
host);
t.BeginConnect(host, port,
new AsyncCallback(ConnectCallback), t);
// Wait here until the callback processes the connection.
connectDone.WaitOne();
Console.WriteLine("Connection established");
}