public bool ContainsKey(TKey key)
 {
     return(_items.ContainsKey(key));
 }
Exemple #2
0
        public bool HasMixinWithConfiguredType(Type configuredType)
        {
            Type realType = MixinTypeCloser.GetClosedMixinType(configuredType);

            return(_mixins.ContainsKey(realType));
        }