6 instantiations of VisualBasicValue
System.Activities (2)
Microsoft\VisualBasic\Activities\VisualBasicDesignerHelper.cs (1)
725
return new
VisualBasicValue
<T>()
System\Activities\XamlIntegration\ActivityWithResultConverter.cs (1)
136
return new
VisualBasicValue
<T>()
System.Activities.Presentation (3)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\ExpressionSettingHelper.cs (1)
19
internal static readonly string VBExpressionLanguageName = (new
VisualBasicValue
<string>() as ITextExpression).Language;
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
51
internal static string ExpressionLanguageName = (new
VisualBasicValue
<string>() as ITextExpression).Language;
1038
newExpression = new
VisualBasicValue
<string>(expressionText);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\MessagingActivityHelper.cs (1)
252
return new InArgument<CorrelationHandle>(new
VisualBasicValue
<CorrelationHandle>(vbvalue.ExpressionText));
10 references to VisualBasicValue
System.Activities.Presentation (8)
System.Activities.Presentation\System\Activities\Presentation\Converters\VisualBasicValueSearchableStringConverter.cs (1)
22
if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(
VisualBasicValue
<>))
System.Activities.Presentation\System\Activities\Presentation\DesignerMetadata.cs (3)
60
builder.AddCustomAttributes(typeof(
VisualBasicValue
<>), new SearchableStringConverterAttribute(typeof(VisualBasicValueSearchableStringConverter)));
74
builder.AddCustomAttributes(typeof(
VisualBasicValue
<>), new ExpressionMorphHelperAttribute(typeof(VisualBasicExpressionMorphHelper)));
76
builder.AddCustomAttributes(typeof(
VisualBasicValue
<>), new FeatureAttribute(typeof(VisualBasicValueValidationFeature)));
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
48
private static readonly Type VisualBasicValueType = typeof(
VisualBasicValue
<>);
1027
targetExpressionType = typeof(
VisualBasicValue
<>).MakeGenericType(type);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicValueValidationFeature.cs (1)
17
private static readonly Type VisualBasicValueType = typeof(
VisualBasicValue
<>);
System.Activities.Presentation\System\Activities\Presentation\VisualBasicExpressionMorphHelper.cs (1)
19
Fx.Assert(expression.GetType().GetGenericTypeDefinition() == typeof(
VisualBasicValue
<>) ||
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\MessagingActivityHelper.cs (2)
249
VisualBasicValue
<CorrelationHandle> vbvalue = requestCorrelatesWith.Expression as
VisualBasicValue
<CorrelationHandle>;