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


C# Socket.Connect方法代碼示例

本文整理匯總了C#中System.Net.Sockets.Socket.Connect方法的典型用法代碼示例。如果您正苦於以下問題:C# Socket.Connect方法的具體用法?C# Socket.Connect怎麽用?C# Socket.Connect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Net.Sockets.Socket的用法示例。


在下文中一共展示了Socket.Connect方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Connect3

// Synchronous connect using host name (resolved by the 
// Connect call.)
public static void Connect3(string host, int port)
{
    Socket s = new Socket(AddressFamily.InterNetwork,
        SocketType.Stream,
        ProtocolType.Tcp);

    Console.WriteLine("Establishing Connection to {0}", 
        host);
    s.Connect(host, port);
    Console.WriteLine("Connection established");
}
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:13,代碼來源:Socket.Connect

示例2: Connect2

// Synchronous connect using Dns.GetHostAddresses to 
// resolve the host name.
public static void Connect2(string host, int port)
{
    IPAddress[] IPs = Dns.GetHostAddresses(host);

    Socket s = new Socket(AddressFamily.InterNetwork,
        SocketType.Stream,
        ProtocolType.Tcp);
    Console.WriteLine("Establishing Connection to {0}", 
        host);
    s.Connect(IPs, port);
    Console.WriteLine("Connection established");
}
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:14,代碼來源:Socket.Connect

示例3: catch

// .Connect throws an exception if unsuccessful
client.Connect(anEndPoint);

// This is how you can determine whether a socket is still connected.
bool blockingState = client.Blocking;
try
{
    byte [] tmp = new byte[1];

    client.Blocking = false;
    client.Send(tmp, 0, 0);
    Console.WriteLine("Connected!");
}
catch (SocketException e) 
{
    // 10035 == WSAEWOULDBLOCK
    if (e.NativeErrorCode.Equals(10035))
    {
        Console.WriteLine("Still Connected, but the Send would block");
    }
    else
    {
        Console.WriteLine("Disconnected: error code {0}!", e.NativeErrorCode);
    }
}
finally
{
    client.Blocking = blockingState;
}

Console.WriteLine("Connected: {0}", client.Connected);
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:31,代碼來源:Socket.Connect

示例4: Connect1

// Synchronous connect using IPAddress to resolve the 
       // host name.
       public static void Connect1(string host, int port)
       {
           IPAddress[] IPs = Dns.GetHostAddresses(host);

           Socket s = new Socket(AddressFamily.InterNetwork,
               SocketType.Stream,
               ProtocolType.Tcp);

           Console.WriteLine("Establishing Connection to {0}", 
               host);
           s.Connect(IPs[0], port);
           Console.WriteLine("Connection established");
       }
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:15,代碼來源:Socket.Connect

示例5: Socket.Connect(IPEndPoint ip)

//引入命名空間
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;

class MainClass
{
   public static void Main()
   {
      IPAddress host = IPAddress.Parse("192.168.1.1");
      IPEndPoint hostep = new IPEndPoint(host, 8000);
      Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);

      try
      {
         sock.Connect(hostep);
      } catch (SocketException e) {
         Console.WriteLine("Problem connecting to host");
         Console.WriteLine(e.ToString());
         sock.Close();
         return;
      }

      sock.Close();
   }
}
開發者ID:C#程序員,項目名稱:System.Net.Sockets,代碼行數:27,代碼來源:Socket.Connect


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