fCraft.IPBanList.RaiseRemovedIPBanEvent C# (CSharp) Method

RaiseRemovedIPBanEvent() private static method

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