3 writes to propertiesDeclaredOnThisType
System.Data.Services (3)
System\Data\Services\Providers\ResourceType.cs (3)
283
this.
propertiesDeclaredOnThisType
= readOnlyProperties;
291
this.
propertiesDeclaredOnThisType
= propertyCollection;
1047
this.
propertiesDeclaredOnThisType
= new List<ResourceProperty>();
11 references to propertiesDeclaredOnThisType
System.Data.Services (11)
System\Data\Services\Providers\ResourceType.cs (11)
268
ReadOnlyCollection<ResourceProperty> readOnlyProperties = this.
propertiesDeclaredOnThisType
as ReadOnlyCollection<ResourceProperty>;
274
readOnlyProperties = new ReadOnlyCollection<ResourceProperty>(this.
propertiesDeclaredOnThisType
?? ResourceType.EmptyProperties);
282
IList<ResourceProperty> propertyCollection = this.
propertiesDeclaredOnThisType
;
677
if (this.
propertiesDeclaredOnThisType
!= null)
679
foreach (ResourceProperty p in this.
propertiesDeclaredOnThisType
)
1045
if (this.
propertiesDeclaredOnThisType
== null)
1050
foreach (ResourceProperty resourceProperty in this.
propertiesDeclaredOnThisType
)
1089
this.
propertiesDeclaredOnThisType
.Add(property);
1218
if (this.
propertiesDeclaredOnThisType
.Where(p => p.Name == rp.Name).FirstOrDefault() != null)
1226
if (this.
propertiesDeclaredOnThisType
.Where(p => p.IsOfKind(ResourcePropertyKind.Key)).FirstOrDefault() == null)
1233
foreach (ResourceProperty p in this.
propertiesDeclaredOnThisType
)