31 references to ICompiledExpressionRoot
System.Activities (27)
System\Activities\Expressions\CompiledExpressionInvoker.cs (15)
26
ICompiledExpressionRoot
compiledRoot;
92
public static void SetCompiledExpressionRoot(object target,
ICompiledExpressionRoot
compiledExpressionRoot)
115
public static void SetCompiledExpressionRootForImplementation(object target,
ICompiledExpressionRoot
compiledExpressionRoot)
138
internal static bool TryGetCompiledExpressionRoot(Activity expression, Activity target, out
ICompiledExpressionRoot
compiledExpressionRoot)
149
internal static bool TryGetCompiledExpressionRoot(Activity target, bool forImplementation, out
ICompiledExpressionRoot
compiledExpressionRoot)
153
compiledExpressionRoot = GetCompiledExpressionRoot(target) as
ICompiledExpressionRoot
;
164
if (target is
ICompiledExpressionRoot
)
166
compiledExpressionRoot = (
ICompiledExpressionRoot
)target;
170
compiledExpressionRoot = GetCompiledExpressionRootForImplementation(target) as
ICompiledExpressionRoot
;
193
bool TryGetCurrentCompiledExpressionRoot(ActivityContext activityContext, out
ICompiledExpressionRoot
compiledExpressionRoot, out int expressionId)
199
ICompiledExpressionRoot
currentCompiledExpressionRoot = null;
218
bool CanExecuteExpression(
ICompiledExpressionRoot
compiledExpressionRoot, out int expressionId)
283
bool TryGetCompiledExpressionRootAtDesignTime(Activity expression, Activity target, out
ICompiledExpressionRoot
compiledExpressionRoot, out int exprId)
296
bool FindCompiledExpressionRoot(out int exprId, out
ICompiledExpressionRoot
compiledExpressionRoot)
302
ICompiledExpressionRoot
currentCompiledExpressionRoot = null;
System\Activities\XamlIntegration\ActivityXamlServices.cs (2)
331
ICompiledExpressionRoot
compiledExpressionRoot = Activator.CreateInstance(compiledExpressionRootType, new object[] { dynamicActivity }) as
ICompiledExpressionRoot
;
System\Activities\XamlIntegration\CompiledLocation.cs (4)
211
ICompiledExpressionRoot
compiledRoot = GetCompiledExpressionRoot();
217
ICompiledExpressionRoot
GetCompiledExpressionRoot()
221
ICompiledExpressionRoot
compiledExpressionRoot;
251
bool FindCompiledExpressionRoot(Activity activity, out
ICompiledExpressionRoot
compiledExpressionRoot)
System\Activities\XamlIntegration\TextExpressionCompiler.cs (6)
712
classDeclaration.BaseTypes.Add(new CodeTypeReference(typeof(
ICompiledExpressionRoot
)));
723
languageProperty.ImplementationTypes.Add(new CodeTypeReference(typeof(
ICompiledExpressionRoot
)));
812
getLocationsMethod.ImplementationTypes.Add(new CodeTypeReference(typeof(
ICompiledExpressionRoot
)));
887
getExpressionTreeForExpressionMethod.ImplementationTypes.Add(new CodeTypeReference(typeof(
ICompiledExpressionRoot
)));
928
invokeExpressionMethod.ImplementationTypes.Add(new CodeTypeReference(typeof(
ICompiledExpressionRoot
)));
1274
isValidMethod.ImplementationTypes.Add(new CodeTypeReference(typeof(
ICompiledExpressionRoot
)));
System.ServiceModel.Activation (4)
System\ServiceModel\Activities\Activation\WorkflowServiceHostFactory.cs (1)
324
ICompiledExpressionRoot
expressionRoot = XamlBuildProviderExtension.GetExpressionRoot(supportedVersionXamlxfilePath, service, ServiceHostingEnvironment.FullVirtualPath);
System\ServiceModel\Activities\Activation\XamlBuildProviderExtension.cs (3)
101
internal static
ICompiledExpressionRoot
GetExpressionRoot(string supportedVersionXamlxfilePath, WorkflowService service, string virtualPath)
126
return (
ICompiledExpressionRoot
)createExpressionRootMethod.Invoke(null, new object[] { service.Body });
169
codeMemberMethod.ReturnType = new CodeTypeReference(typeof(
ICompiledExpressionRoot
));