GameModeFortress.ServerConfig.IsIPBanned C# (CSharp) Method

IsIPBanned() public method

public IsIPBanned ( string ipAddress ) : bool
ipAddress string
return bool
        public bool IsIPBanned(string ipAddress)
        {
            foreach (string bannedip in this.BannedIPs)
            {
                if(bannedip == ipAddress)
                    return true;
            }
            return false;
        }