コード例 #1
0
ファイル: Udp.cs プロジェクト: Gscienty/AsyncIO.Net
 public Udp SetMemberShip(
     string multicastAddress,
     string interfaceAddress,
     UdpMemberShip memberShip)
 {
     NativeMethods.uv_udp_set_membership(
         this,
         multicastAddress,
         interfaceAddress,
         memberShip
         );
     return(this);
 }
コード例 #2
0
ファイル: Udp.cs プロジェクト: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_set_membership(Udp handle, string multicastAddress, string interfaceAddress, UdpMemberShip memberShip);