Deveel.Data.Client.DeveelDbConnectionStringBuilder.TryGetValue C# (CSharp) Méthode

TryGetValue() public méthode

public TryGetValue ( string keyword, object &value ) : bool
keyword string
value object
Résultat bool
        public override bool TryGetValue(string keyword, out object value)
        {
            if (!ContainsKey(keyword)) {
                value = null;
                return false;
            }

            return base.TryGetValue(keymaps[keyword.ToUpper().Trim()], out value);
        }