Ejemplo n.º 1
0
 public RtpAudioFacade(MulticastNetwork network)
 {
     this.network = network;
 }
Ejemplo n.º 2
0
 private void DisplayAddressingStrategy()
 {
     try
     {
         MulticastNetwork network = new MulticastNetwork(multicastNetworkTextBox.Text, (int)multiCastSubnetValue.Value);
         strategyDescription.Text = network.ToString();
     }
     catch (Exception ex)
     {
         strategyDescription.Text = ex.Message;
     }
 }
Ejemplo n.º 3
0
 public void RefreshMulticastNet()
 {
     this.network = new MulticastNetwork(this.MulticastNetworkStart, this.MulticastPrefix);
 }