Exemplo n.º 1
0
 /// <summary>
 /// Removes a UDPChannel on the instance</summary>
 /// <param name='channelName'>The name of the channel you want to remove.</param>
 /// <c>It must be registered on this instance, if a channel with that name can't be found the method will throw an exception!</c>
 public void RemoveChannel(string channelName)
 {
     _udpManager.RemoveChannel(channelName);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Removes a UDPChannel on the instance</summary>
 /// <param name='channelName'>The name of the channel you want to remove.</param>
 /// <c>It must be registered on this instance, if a channel with that name can't be found the method will throw an exception!</c>
 /// <remarks>You can check if the name is registered by calling <see cref="GetChannelByName"/></remarks>
 public void RemoveChannel(string channelName)
 {
     udpm.RemoveChannel(channelName);
 }