3 writes to Collection
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (1)
93
Collection
= this.Collection,
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
248
Collection
= dataModelItemCollection,
295
Collection
= dataModelItemCollection,
11 references to Collection
System.Data (11)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (11)
51
Fx.Assert(this.
Collection
!= null, "this.Collection cannot be null.");
55
((ModelItemCollectionImpl)this.
Collection
).RemoveAtCore(this.Index);
60
this.Index = this.
Collection
.IndexOf(this.Item);
61
((ModelItemCollectionImpl)this.
Collection
).RemoveCore(this.Item);
64
ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateCollectionItemRemoved(this.
Collection
, this.Item);
71
Fx.Assert(this.
Collection
!= null, "this.Collection cannot be null.");
75
((ModelItemCollectionImpl)this.
Collection
).InsertCore(this.Index, this.Item);
80
this.Index = this.
Collection
.Count;
81
((ModelItemCollectionImpl)this.
Collection
).AddCore(this.Item);
84
ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateCollectionItemAdded(this.
Collection
, this.Item);
93
Collection = this.
Collection
,