2 writes to _properties
NuGet.Packaging (2)
ContentModel\ContentItem.cs (2)
31internal set => _properties = value; 194_properties = properties;
19 references to _properties
NuGet.Packaging (19)
ContentModel\ContentItem.cs (5)
30get => _properties ?? CreateDictionary(); 47if (_properties != null) 49return _properties.TryGetValue(key, out value); 101if (_properties != null) 103_properties.Add(key, value);
ContentModel\ContentItemCollection.cs (14)
377if (obj._properties != null) 379foreach (var property in obj._properties) 442if (x._properties == null && y._properties != null) 447if (x._properties != null && y._properties == null) 452if (x._properties?.Count != y._properties?.Count) 457if (x._properties != null && y._properties != null) 459foreach (var xProperty in x._properties) 462if (!y._properties.TryGetValue(xProperty.Key, out yValue)) 471foreach (var yProperty in y._properties) 474if (!x._properties.TryGetValue(yProperty.Key, out xValue))