13 references to TypeCollectionPropertyEditor
System.Activities.Core.Presentation (13)
System\Activities\Core\Presentation\InvokeMethodDesigner.xaml.cs (2)
34PropertyValueEditor.CreateEditorAttribute(typeof(TypeCollectionPropertyEditor)), 35new EditorOptionAttribute { Name = TypeCollectionPropertyEditor.AllowDuplicate, Value = true });
System\Activities\Presentation\TypeCollectionPropertyEditor.cs (3)
63bool allowDuplication = GetOptionValueOrUseDefault(editingProperty.Attributes, TypeCollectionPropertyEditor.AllowDuplicate, true); 64Func<Type, bool> filter = GetOptionValueOrUseDefault<Func<Type, bool>>(editingProperty.Attributes, TypeCollectionPropertyEditor.Filter, null); 65Type defaultType = GetOptionValueOrUseDefault<Type>(editingProperty.Attributes, TypeCollectionPropertyEditor.DefaultType, typeof(Object));
System\ServiceModel\Activities\Presentation\ReceiveDesigner.xaml.cs (2)
74PropertyValueEditor.CreateEditorAttribute(typeof(TypeCollectionPropertyEditor)), 75new EditorOptionAttribute { Name = TypeCollectionPropertyEditor.AllowDuplicate, Value = false });
System\ServiceModel\Activities\Presentation\SendDesigner.xaml.cs (2)
78PropertyValueEditor.CreateEditorAttribute(typeof(TypeCollectionPropertyEditor)), 79new EditorOptionAttribute { Name = TypeCollectionPropertyEditor.AllowDuplicate, Value = false });
System\ServiceModel\Presentation\ServiceDesigner.xaml.cs (4)
52PropertyValueEditor.CreateEditorAttribute(typeof(TypeCollectionPropertyEditor)), 53new EditorOptionAttribute { Name = TypeCollectionPropertyEditor.AllowDuplicate, Value = false }, 54new EditorOptionAttribute { Name = TypeCollectionPropertyEditor.Filter, Value = ServiceContractImporter.FilterFunction }, 55new EditorOptionAttribute { Name = TypeCollectionPropertyEditor.DefaultType, Value = null });