2 instantiations of CustomProperty
System.Workflow.ComponentModel (2)
AuthoringOM\Design\CustomActivityDesigner.cs (2)
432CustomProperty customProperty = new CustomProperty(serviceProvider); 886CustomProperty newCustomProperty = new CustomProperty(serviceProvider);
28 references to CustomProperty
System.Workflow.ComponentModel (28)
AuthoringOM\Design\ActivityDesigner.cs (3)
2119List<CustomProperty> properties = CustomActivityDesignerHelper.GetCustomProperties(serviceProvider); 2141CustomProperty newCustomProperty = CustomProperty.CreateCustomProperty(Activity.Site, DesignerHelpers.GenerateUniqueIdentifier(Activity.Site, Activity.Name + "_" + propertyDescriptor.Name, customPropertyNames.ToArray()), propertyDescriptor, Activity);
AuthoringOM\Design\CustomActivityDesigner.cs (21)
397internal static List<CustomProperty> GetCustomProperties(IServiceProvider serviceProvider) 409List<CustomProperty> cpc = new List<CustomProperty>(); 422CustomProperty eventProperty = CreateCustomProperty(serviceProvider, customActivityType, evt, evt.EventHandlerType); 430private static CustomProperty CreateCustomProperty(IServiceProvider serviceProvider, Type customActivityType, MemberInfo member, Type propertyType) 432CustomProperty customProperty = new CustomProperty(serviceProvider); 509internal static void SetCustomProperties(List<CustomProperty> customProperties, IServiceProvider serviceProvider) 518List<CustomProperty> existingCustomProperties = GetCustomProperties(serviceProvider); 527private static void RemoveDeletedProperties(List<CustomProperty> propCollection, Type customActivityType, IServiceProvider serviceProvider) 538foreach (CustomProperty customProperty in propCollection) 555foreach (CustomProperty customProperty in propCollection) 569private static void AddNewProperties(List<CustomProperty> propCollection, Type customActivityType, IServiceProvider serviceProvider, List<CustomProperty> existingProps) 585foreach (CustomProperty property in propCollection) 608CustomProperty oldProperty = null; 609foreach (CustomProperty existingProperty in existingProps) 641private static AttributeInfo[] CreateCustomPropertyAttributeArray(CustomProperty property, IServiceProvider serviceProvider) 665private static bool ArePropertiesDifferent(CustomProperty property, CustomProperty oldProperty) 884public static CustomProperty CreateCustomProperty(IServiceProvider serviceProvider, string customPropertyName, PropertyDescriptor propertyDescriptor, object propertyOwner) 886CustomProperty newCustomProperty = new CustomProperty(serviceProvider);
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (2)
49List<CustomProperty> properties; 200foreach (CustomProperty customProperty in this.properties)
AuthoringOM\Design\UITypeEditors.cs (2)
142List<CustomProperty> properties = CustomActivityDesignerHelper.GetCustomProperties(context); 145properties.Add(CustomProperty.CreateCustomProperty(this.serviceProvider, bindDialog.NewMemberName, context.PropertyDescriptor, context.Instance));