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