ContainsKey method

bool ContainsKey(
  1. TKey key
)
Determines whether the specified key is in the property bag. The key.

Implementation

bool ContainsKey(TKey key) {
  return this._items.containsKey(key);
}