1 instantiation of PropertyStoreItem
System.ComponentModel.DataAnnotations (1)
DataAnnotations\ValidationAttributeStore.cs (1)
213PropertyStoreItem item = new PropertyStoreItem(property.PropertyType, GetExplicitAttributes(property).Cast<Attribute>());
12 references to PropertyStoreItem
System.ComponentModel.DataAnnotations (12)
DataAnnotations\ValidationAttributeStore.cs (12)
60PropertyStoreItem item = typeItem.GetPropertyStoreItem(validationContext.MemberName); 72PropertyStoreItem item = typeItem.GetPropertyStoreItem(validationContext.MemberName); 84PropertyStoreItem item = typeItem.GetPropertyStoreItem(validationContext.MemberName); 98PropertyStoreItem item = null; 168private Dictionary<string, PropertyStoreItem> _propertyStoreItems; 175internal PropertyStoreItem GetPropertyStoreItem(string propertyName) { 176PropertyStoreItem item = null; 183internal bool TryGetPropertyStoreItem(string propertyName, out PropertyStoreItem item) { 201private Dictionary<string, PropertyStoreItem> CreatePropertyStoreItems() { 202Dictionary<string, PropertyStoreItem> propertyStoreItems = new Dictionary<string, PropertyStoreItem>(); 213PropertyStoreItem item = new PropertyStoreItem(property.PropertyType, GetExplicitAttributes(property).Cast<Attribute>());