fCraft.IPBanList.RaiseAddedIPBanEvent C# (CSharp) Method

RaiseAddedIPBanEvent() private static method

private static RaiseAddedIPBanEvent ( [ info ) : void
info [
return void
        private static void RaiseAddedIPBanEvent( [NotNull] IPBanInfo info )
        {
            if ( info == null )
                throw new ArgumentNullException( "info" );
            var h = AddedIPBan;
            if ( h != null )
                h( null, new IPBanEventArgs( info ) );
        }