System.Collections.Hashtable.SyncHashtable.ContainsValue C# (CSharp) Method

ContainsValue() public method

public ContainsValue ( Object key ) : bool
key Object
return bool
            public override bool ContainsValue(Object key)
            {
                lock (_table.SyncRoot)
                {
                    return _table.ContainsValue(key);
                }
            }