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