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


C# UdpClient構造函數代碼示例

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


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

示例1: UdpClient

//Creates an instance of the UdpClient class to listen on
// the default interface using a particular port.
try{
         UdpClient udpClient = new UdpClient(11000);
}  
catch (Exception e ) {
          Console.WriteLine(e.ToString());
  }
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:8,代碼來源:UdpClient

示例2: IPEndPoint

//Creates an instance of the UdpClient class using a local endpoint.
 IPAddress ipAddress = Dns.Resolve(Dns.GetHostName()).AddressList[0];
 IPEndPoint ipLocalEndPoint = new IPEndPoint(ipAddress, 11000);

try{
     UdpClient udpClient = new UdpClient(ipLocalEndPoint);
}
catch (Exception e ) {
           Console.WriteLine(e.ToString());
}
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:10,代碼來源:UdpClient

示例3: UdpClient

// Bind and listen on port 2000. This constructor creates a socket 
    // and binds it to the port on which to receive data. The family 
    // parameter specifies that this connection uses an IPv6 address.
    clientOriginator = new UdpClient(2000, AddressFamily.InterNetworkV6);

    // Join or create a multicast group. The multicast address ranges 
    // to use are specified in RFC#2375. You are free to use 
    // different addresses.
  
    // Transform the string address into the internal format.
    m_GrpAddr = IPAddress.Parse("FF01::1");

    // Display the multicast address used.
    Console.WriteLine("Multicast Address: [" + m_GrpAddr.ToString() + "]");

    // Exercise the use of the IPv6MulticastOption.
    Console.WriteLine("Instantiate IPv6MulticastOption(IPAddress)");

    // Instantiate IPv6MulticastOption using one of the 
    // overloaded constructors.
    IPv6MulticastOption ipv6MulticastOption = new IPv6MulticastOption(m_GrpAddr);

    // Store the IPAdress multicast options.
    IPAddress group =  ipv6MulticastOption.Group;
    long interfaceIndex = ipv6MulticastOption.InterfaceIndex;

    // Display IPv6MulticastOption properties.
    Console.WriteLine("IPv6MulticastOption.Group: [" + group  + "]");
    Console.WriteLine("IPv6MulticastOption.InterfaceIndex: [" + interfaceIndex + "]");



    // Instantiate IPv6MulticastOption using another 
    // overloaded constructor.
    IPv6MulticastOption ipv6MulticastOption2 = new IPv6MulticastOption(group, interfaceIndex);

    // Store the IPAdress multicast options.
    group =  ipv6MulticastOption2.Group;
    interfaceIndex = ipv6MulticastOption2.InterfaceIndex;

    // Display the IPv6MulticastOption2 properties.
    Console.WriteLine("IPv6MulticastOption.Group: [" + group  + "]");
    Console.WriteLine("IPv6MulticastOption.InterfaceIndex: [" + interfaceIndex + "]");

    // Join the specified multicast group using one of the 
    // JoinMulticastGroup overloaded methods.
    clientOriginator.JoinMulticastGroup((int)interfaceIndex, group);
  

    // Define the endpoint data port. Note that this port number
    // must match the ClientTarget UDP port number which is the
    // port on which the ClientTarget is receiving data.
    m_ClientTargetdest = new IPEndPoint(m_GrpAddr, 1000);
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:53,代碼來源:UdpClient

示例4: UdpClient

//Creates an instance of the UdpClient class with a remote host name and a port number.
try{
     UdpClient udpClient = new UdpClient("www.contoso.com",11000);
}
catch (Exception e ) {
           Console.WriteLine(e.ToString());
}
開發者ID:.NET開發者,項目名稱:System.Net.Sockets,代碼行數:7,代碼來源:UdpClient


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