1 instantiation of ModelItemKeyValuePair
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DictionaryItemsCollection.cs (1)
25ModelItemKeyValuePair<TKey, TValue> item = new ModelItemKeyValuePair<TKey, TValue>(kvpair.Key, kvpair.Value);
15 references to ModelItemKeyValuePair
System.Data (15)
cdf\src\NetFx40\Tools\System.Activities.Core.Presentation\System\Activities\Core\Presentation\SwitchDesigner.xaml.cs (3)
159this.Resources.Add("ModelItemKeyValuePairType", typeof(ModelItemKeyValuePair<,>)); 409Type caseType = typeof(ModelItemKeyValuePair<,>).MakeGenericType(new Type[] { this.CaseType, typeof(Activity) }); 426Type caseType = typeof(ModelItemKeyValuePair<,>).MakeGenericType(new Type[] { this.CaseType, typeof(Activity) });
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\CutCopyPasteHelper.cs (1)
57disallowedTypesForCopy.Add(typeof(ModelItemKeyValuePair<,>));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DictionaryItemsCollection.cs (7)
12class DictionaryItemsCollection<TKey, TValue> : Collection<ModelItemKeyValuePair<TKey, TValue>>, IItemsCollection 25ModelItemKeyValuePair<TKey, TValue> item = new ModelItemKeyValuePair<TKey, TValue>(kvpair.Key, kvpair.Value); 71protected override void InsertItem(int index, ModelItemKeyValuePair<TKey, TValue> item) 91ModelItemKeyValuePair<TKey, TValue> item = this[index]; 101protected override void SetItem(int index, ModelItemKeyValuePair<TKey, TValue> item) 108ModelItemKeyValuePair<TKey, TValue> oldItem = this[index]; 121foreach (ModelItemKeyValuePair<TKey, TValue> item in this)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
79this.itemsCollectionKVPType = typeof(ModelItemKeyValuePair<,>).MakeGenericType(genericArguments);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (1)
1282this.itemType = typeof(ModelItemKeyValuePair<,>).MakeGenericType(this.GenericArguments);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (1)
35return type.IsGenericType && type.GetGenericTypeDefinition() == typeof(ModelItemKeyValuePair<,>);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Validation\ValidationService.cs (1)
908parent.ItemType.GetGenericTypeDefinition() == typeof(ModelItemKeyValuePair<,>);