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