System.Data.Common.DBConnectionString.IsRestrictedKeyword C# (CSharp) Méthode

IsRestrictedKeyword() private méthode

private IsRestrictedKeyword ( string key ) : bool
key string
Résultat bool
        private bool IsRestrictedKeyword(string key)
        {
            // restricted if not found
            return ((null == _restrictionValues) || (0 > Array.BinarySearch(_restrictionValues, key, StringComparer.Ordinal)));
        }