Example #1
0
        protected virtual void OnReceivedUserList(ReceivedListEventArgs <IUserInfo> e)
        {
            var received = this.ReceivedUserList;

            if (received != null)
            {
                received(this, e);
            }
        }
Example #2
0
        protected virtual void OnSourcesRemoved(ReceivedListEventArgs <AudioSource> e)
        {
            var removed = this.AudioSourcesRemoved;

            if (removed != null)
            {
                removed(this, e);
            }
        }
Example #3
0
        protected internal virtual void OnReceivedChannelList(ReceivedListEventArgs <IChannelInfo> e)
        {
            var received = this.ReceivedChannelList;

            if (received != null)
            {
                received(this, e);
            }
        }
Example #4
0
        protected virtual void OnReceivedSourceList(ReceivedListEventArgs <AudioSource> e)
        {
            var received = this.ReceivedSourceList;

            if (received != null)
            {
                received(this, e);
            }
        }