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