23 references to IsEvent
System.Workflow.ComponentModel (23)
AuthoringOM\Compiler\Validation\DependencyObjectValidator.cs (2)
92
else if (!dependencyProperty.
IsEvent
)
97
if (dependencyProperty.
IsEvent
)
AuthoringOM\DependencyObject.cs (6)
159
if (dependencyProperty.
IsEvent
)
252
if (dependencyProperty.
IsEvent
)
337
if (!dependencyEvent.
IsEvent
)
383
if (!dependencyEvent.
IsEvent
)
403
if (!dependencyEvent.
IsEvent
)
562
if (!dependencyEvent.
IsEvent
)
AuthoringOM\Design\ComponentSerializationService.cs (1)
659
else if (!dependencyProperty.
IsEvent
)
AuthoringOM\Design\CustomActivityDesigner.cs (1)
903
newCustomProperty.IsEvent = (dependencyProperty != null && dependencyProperty.
IsEvent
);
AuthoringOM\Design\PropertyDescriptors.cs (2)
355
if (dependencyProperty.
IsEvent
&& ServiceProvider != null)
432
bool includeEvents = (dependencyProperty != null && dependencyProperty.
IsEvent
);
AuthoringOM\Serializer\DependencyObjectCodeDomSerializer.cs (5)
74
if ((dp.
IsEvent
&& dp.OwnerType.GetField(dp.Name + "Event", BindingFlags.Static | BindingFlags.Public | BindingFlags.DeclaredOnly) != null) ||
75
(!dp.
IsEvent
&& dp.OwnerType.GetField(dp.Name + "Property", BindingFlags.Static | BindingFlags.Public | BindingFlags.DeclaredOnly) != null))
84
else if (!dependencyProperty.
IsEvent
)
104
string dependencyPropertyName = dependencyProperty.Name + ((dependencyProperty.
IsEvent
) ? "Event" : "Property");
121
codeMethodInvokeExpr = new CodeMethodInvokeExpression(objectExpression, (dependencyProperty.
IsEvent
) ? "AddHandler" : "SetValue", new CodeExpression[] { param1, param2 });
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (6)
351
if (dependencyProperty.
IsEvent
)
1489
if (dependencyProperty.
IsEvent
)
1503
else if (!dependencyProperty.
IsEvent
)
1537
if (dependencyProperty.
IsEvent
)
1573
if (dependencyProperty.
IsEvent
)
1819
else if (!dependencyProperty.
IsEvent
)