1 write to sources
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
49this.sources = new List<ModelProperty>(1);
12 references to sources
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (12)
328return (this.sources.Count > 0) ? this.sources.First() : null; 362from source in this.sources 367from source in this.sources 376return this.sources; 584if (!this.sources.Contains(property)) 587ModelProperty foundProperty = this.sources.Find((modelProperty) => modelProperty.Name.Equals(property.Name) && property.Parent == modelProperty.Parent); 590this.sources.Add(property); 627if (this.sources.Contains(oldModelProperty)) 629this.sources.Remove(oldModelProperty); 640ModelProperty foundProperty = this.sources.FirstOrDefault<ModelProperty>((modelProperty) => modelProperty.Name.Equals(propertyName) && modelProperty.Parent == parent); 643this.sources.Remove(foundProperty);