14 references to InvokeDelegate
System.Activities.Core.Presentation (14)
System\Activities\Core\Presentation\InvokeDelegateDesigner.xaml.cs (6)
35builder.AddCustomAttributes(typeof(InvokeDelegate), new DesignerAttribute(typeof(InvokeDelegateDesigner))); 36builder.AddCustomAttributes(typeof(InvokeDelegate), new ActivityDesignerOptionsAttribute { AllowDrillIn = false }); 37builder.AddCustomAttributes(typeof(InvokeDelegate), new FeatureAttribute(typeof(InvokeDelegateValidationFeature))); 38builder.AddCustomAttributes(typeof(InvokeDelegate), DelegatePropertyName, BrowsableAttribute.No); 39builder.AddCustomAttributes(typeof(InvokeDelegate), DelegateArgumentsPropertyName, PropertyValueEditor.CreateEditorAttribute(typeof(DelegateArgumentsValueEditor)), BrowsableAttribute.Yes); 40builder.AddCustomAttributes(typeof(InvokeDelegate), DefaultPropertyName, BrowsableAttribute.No);
System\Activities\Core\Presentation\InvokeDelegateValidationFeature.cs (8)
29get { return typeof(InvokeDelegate); } 53DelegateInArgument<InvokeDelegate> invokeDelegate = new DelegateInArgument<InvokeDelegate>(); 56return new Constraint<InvokeDelegate> 58Body = new ActivityAction<InvokeDelegate, ValidationContext> 92public InArgument<InvokeDelegate> Activity { get; set; } 106RuntimeArgument activityArgument = new RuntimeArgument("Activity", typeof(InvokeDelegate), ArgumentDirection.In, true); 119InvokeDelegate activity = this.Activity.Get(context);