56 references to ConditionHelper
System.Workflow.Activities (56)
Designers\PolicyDesigner.cs (2)
44RuleDefinitions rules = ConditionHelper.Load_Rules_DT(this, Helpers.GetRootActivity(activity)); 78ConditionHelper.Flush_Rules_DT(this, Helpers.GetRootActivity(activity));
Rules\DeclarativeExpressionConditionDeclaration.cs (3)
295return ConditionHelper.Load_Rules_RT(declaringActivity); 373rules = ConditionHelper.Load_Rules_DT(activity.Site, declaringActivity); 375rules = ConditionHelper.Load_Rules_RT(declaringActivity);
Rules\Design\Dialogs\BasicBrowserDialog.cs (1)
318ConditionHelper.Flush_Rules_DT(site, Helpers.GetRootActivity(this.activity));
Rules\Design\Dialogs\ConditionBrowserDialog.cs (1)
37RuleDefinitions rules = ConditionHelper.Load_Rules_DT(activity.Site, Helpers.GetRootActivity(activity));
Rules\Design\Dialogs\RuleSetBrowserDialog.cs (1)
26RuleDefinitions rules = ConditionHelper.Load_Rules_DT(activity.Site, Helpers.GetRootActivity(activity));
Rules\Design\LogicalExpressionEditor.cs (2)
47RuleDefinitions rules = ConditionHelper.Load_Rules_DT(serviceProvider, Helpers.GetRootActivity(baseActivity)); 213RuleDefinitions rules = ConditionHelper.Load_Rules_DT(serviceProvider, Helpers.GetRootActivity(baseActivity));
Rules\Design\LogicalExpressionTypeConverter.cs (10)
40return ConditionHelper.Load_Rules_DT(this.ServiceProvider, root); 42return ConditionHelper.GetRuleDefinitionsFromManifest(declaring.GetType()); 133RuleDefinitions rules = ConditionHelper.Load_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 143ConditionHelper.Flush_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 282RuleDefinitions rules = ConditionHelper.Load_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 292ConditionHelper.Flush_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 390RuleDefinitions rules = ConditionHelper.Load_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 399ConditionHelper.Flush_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 490RuleDefinitions rules = ConditionHelper.Load_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity)); 498ConditionHelper.Flush_Rules_DT(site, Helpers.GetRootActivity(site.Component as Activity));
Rules\Executor.cs (2)
800if (!ConditionHelper.IsNullableValueType(toType)) 840bool resultNullable = ConditionHelper.IsNullableValueType(toType);
Rules\Expressions.cs (7)
150object clonedValue = ConditionHelper.CloneObject(primitiveExpr.Value); 1695ConditionHelper.CloneUserData(oldReference, newReference); 1947ConditionHelper.CloneUserData(oldType, newType); 2040if (ConditionHelper.IsNonNullableValueType(toType)) 2053if (ConditionHelper.IsNullableValueType(fromType2)) 2057if (ConditionHelper.IsNullableValueType(toType2)) 2178if (ConditionHelper.IsNonNullableValueType(toType))
Rules\Helpers.cs (1)
181rules = ConditionHelper.GetRuleDefinitionsFromManifest(declaringActivity.GetType());
Rules\Literal.cs (5)
560bool lhsNullable = ConditionHelper.IsNullableValueType(lhs); 561bool rhsNullable = ConditionHelper.IsNullableValueType(rhs); 910if (ConditionHelper.IsNonNullableValueType(parm1) && ConditionHelper.IsNonNullableValueType(parm2)) 934if (ConditionHelper.IsNonNullableValueType(mi.ReturnType) &&
Rules\RuleDefinitions.cs (1)
61rules = ConditionHelper.GetRuleDefinitionsFromManifest(rootActivity.GetType());
Rules\RuleSetReference.cs (3)
79RuleDefinitions rules = ConditionHelper.Load_Rules_RT(declaringActivity); 128rules = ConditionHelper.Load_Rules_DT(activity.Site, declaringActivity); 130rules = ConditionHelper.Load_Rules_RT(declaringActivity);
Rules\RuleValidation.cs (16)
586bool lhsNullable = ConditionHelper.IsNullableValueType(lhs); 587bool rhsNullable = ConditionHelper.IsNullableValueType(rhs); 937this.thisType = ConditionHelper.GetContextType(typeProvider, activity); 1203bool fromIsNullable = ConditionHelper.IsNullableValueType(fromType); 1204bool toIsNullable = ConditionHelper.IsNullableValueType(toType); 1257if (ConditionHelper.IsNonNullableValueType(mi.ReturnType) && ConditionHelper.IsNonNullableValueType(parameters[0].ParameterType)) 1380bool fromIsNullable = ConditionHelper.IsNullableValueType(fromType); 1381bool toIsNullable = ConditionHelper.IsNullableValueType(toType); 1627TypeCode sourceTypeCode = (ConditionHelper.IsNullableValueType(sourceType)) 1630TypeCode testTypeCode = (ConditionHelper.IsNullableValueType(testType)) 1906if (ConditionHelper.IsNonNullableValueType(lhsType)) 1916bool lhsIsNullable = ConditionHelper.IsNullableValueType(lhsType); 1917bool rhsIsNullable = ConditionHelper.IsNullableValueType(rhsType); 2663if (ConditionHelper.IsNullableValueType(t1)) 2667if (ConditionHelper.IsNullableValueType(t2))
Rules\Walker.cs (1)
209ConditionHelper.CloneUserData(originalExpression, newExpr);