當前位置: 首頁>>代碼示例>>C#>>正文


C# TcpClient.BeginConnect方法代碼示例

本文整理匯總了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");
        }
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:19,代碼來源:TcpClient.BeginConnect

示例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");
}
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:17,代碼來源:TcpClient.BeginConnect

示例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");
}
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:17,代碼來源:TcpClient.BeginConnect


注:本文中的System.Net.Sockets.TcpClient.BeginConnect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。