fCraft.PlayerInfo.RaiseMuteChangedEvent C# (CSharp) Method

RaiseMuteChangedEvent() private static method

private static RaiseMuteChangedEvent ( [ target, [ muter, System.TimeSpan duration, bool unmuting, bool announce ) : void
target [
muter [
duration System.TimeSpan
unmuting bool
announce bool
return void
        private static void RaiseMuteChangedEvent( [NotNull] PlayerInfo target, [NotNull] Player muter,
                                           TimeSpan duration, bool unmuting, bool announce )
        {
            var h = MuteChanged;
            if ( h != null )
                h( null, new PlayerInfoMuteChangedEventArgs( target, muter, duration, unmuting, announce ) );
        }