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