Aurora.Voice.Whisper.ChannelManager.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public void Close()
        {
            lock (chan_ids)
            {
                foreach(int channel in chan_ids.Values)
                {
                    try
                    {
                        m_server.removeChannel(channel);
                    }
                    catch
                    {
                    }
                }
                chan_ids.Clear();
            }
        }