当前位置: 首页>>代码示例>>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;未经允许,请勿转载。