Aqueduct.Configuration.Section.ServerListIsEmptyOrContains C# (CSharp) Method

ServerListIsEmptyOrContains() private method

private ServerListIsEmptyOrContains ( string serverName ) : bool
serverName string
return bool
        private bool ServerListIsEmptyOrContains (string serverName)
        {
            return Servers.Count == 0 || (serverName.IsNotEmpty() &&
                Servers.Contains (serverName, new CurrentCultureIgnoreCaseEqualityComparer ()));
        }
    }