1 instantiation of PropertyStoreItem
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\ValidationAttributeStore.cs (1)
218var item = new PropertyStoreItem(property.PropertyType, GetExplicitAttributes(property));
10 references to PropertyStoreItem
System.ComponentModel.Annotations (10)
System\ComponentModel\DataAnnotations\ValidationAttributeStore.cs (10)
66var item = typeItem.GetPropertyStoreItem(validationContext.MemberName!); 80var item = typeItem.GetPropertyStoreItem(validationContext.MemberName!); 94var item = typeItem.GetPropertyStoreItem(validationContext.MemberName!); 171private Dictionary<string, PropertyStoreItem>? _propertyStoreItems; 180internal PropertyStoreItem GetPropertyStoreItem(string propertyName) 182if (!TryGetPropertyStoreItem(propertyName, out PropertyStoreItem? item)) 192internal bool TryGetPropertyStoreItem(string propertyName, [NotNullWhen(true)] out PropertyStoreItem? item) 211private Dictionary<string, PropertyStoreItem> CreatePropertyStoreItems() 213var propertyStoreItems = new Dictionary<string, PropertyStoreItem>(); 218var item = new PropertyStoreItem(property.PropertyType, GetExplicitAttributes(property));