Ejemplo n.º 1
0
        protected virtual void OnHostMutePlayer(HostMutePlayerEventArgs e)
        {
            EventHandler <HostMutePlayerEventArgs> handler = HostMutePlayer;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 2
0
        protected void RaiseOnHostMutePlayer(InterceptedEventArgs e)
        {
            if (HostMutePlayer != null)
            {
                var args = new HostMutePlayerEventArgs(e.Continuation, e.Step, e.Packet);
                OnHostMutePlayer(args);

                e.Cancel       = args.Cancel;
                e.WasContinued = args.WasContinued;
            }
        }
Ejemplo n.º 3
0
 protected virtual void OnHostMutePlayer(HostMutePlayerEventArgs e)
 {
     EventHandler<HostMutePlayerEventArgs> handler = HostMutePlayer;
     if (handler != null) handler(this, e);
 }
Ejemplo n.º 4
0
        protected void RaiseOnHostMutePlayer(InterceptedEventArgs e)
        {
            if (HostMutePlayer != null)
            {
                var args = new HostMutePlayerEventArgs(e.Continuation, e.Step, e.Packet);
                OnHostMutePlayer(args);

                e.Cancel = args.Cancel;
                e.WasContinued = args.WasContinued;
            }
        }