36 references to TextExpression
System.Activities (27)
Microsoft\VisualBasic\Activities\VisualBasicHelper.cs (6)
216
rootNamespaces =
TextExpression
.GetNamespacesForImplementation(environment.Root);
217
rootAssemblies =
TextExpression
.GetReferencesForImplementation(environment.Root);
220
rootNamespaces =
TextExpression
.GetNamespaces(environment.Root);
221
rootAssemblies =
TextExpression
.GetReferences(environment.Root);
226
rootNamespaces =
TextExpression
.GetNamespacesInScope(activity);
227
rootAssemblies =
TextExpression
.GetReferencesInScope(activity);
System\Activities\DynamicUpdate\DynamicUpdateServices.cs (4)
245
IList<string> namespacesForImplementation =
TextExpression
.GetNamespacesForImplementation(activityDefinition);
248
TextExpression
.SetNamespacesForImplementation(result, namespacesForImplementation);
251
IList<AssemblyReference> referencesForImplementation =
TextExpression
.GetReferencesForImplementation(activityDefinition);
254
TextExpression
.SetReferencesForImplementation(result, referencesForImplementation);
System\Activities\Expressions\TextExpression.cs (6)
18
new AttachableMemberIdentifier(typeof(
TextExpression
), "Namespaces");
21
new AttachableMemberIdentifier(typeof(
TextExpression
), "NamespacesForImplementation");
24
new AttachableMemberIdentifier(typeof(
TextExpression
), "References");
27
new AttachableMemberIdentifier(typeof(
TextExpression
), "ReferencesForImplementation");
52
return
TextExpression
.defaultNamespaces;
60
return
TextExpression
.defaultReferences;
System\Activities\XamlIntegration\TextExpressionCompiler.cs (9)
122
isCS =
TextExpression
.LanguagesAreEqual(this.settings.Language, "C#");
134
isVB =
TextExpression
.LanguagesAreEqual(this.settings.Language, "VB");
1375
if (!
TextExpression
.LanguagesAreEqual(textExpression.Language, language)
2070
foreach (string nsReference in
TextExpression
.DefaultNamespaces)
2113
TextExpression
.GetNamespacesForImplementation(this.settings.Activity) :
2114
TextExpression
.GetNamespaces(this.settings.Activity);
2426
new List<AssemblyReference>(
TextExpression
.GetReferencesForImplementation(this.settings.Activity)) :
2427
new List<AssemblyReference>(
TextExpression
.GetReferences(this.settings.Activity));
2429
assemblies.AddRange(
TextExpression
.DefaultReferences);
System\Activities\XamlIntegration\TextExpressionCompilerHelper.cs (2)
75
xreader.Member.DeclaringType.UnderlyingType == typeof(
TextExpression
) &&
82
xreader.Member.DeclaringType.UnderlyingType == typeof(
TextExpression
) &&
System.Activities.Presentation (9)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\WorkflowDesignerXamlSchemaContext.cs (1)
45
conversionRequiredTypes.Add(typeof(System.Activities.Expressions.
TextExpression
));
System.Activities.Presentation\System\Activities\Presentation\NamespaceHelper.cs (8)
27
references =
TextExpression
.GetReferencesForImplementation(root);
28
return
TextExpression
.GetNamespacesForImplementation(root);
32
references =
TextExpression
.GetReferences(root);
33
return
TextExpression
.GetNamespaces(root);
41
TextExpression
.SetNamespacesForImplementation(root, namespaces);
42
TextExpression
.SetReferencesForImplementation(root, references);
46
TextExpression
.SetNamespaces(root, namespaces);
47
TextExpression
.SetReferences(root, references);