2 writes to Type
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\DynamicActivityPropertyChooserViewModel.cs (1)
114clone.Type = property.Type;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (1)
131Type = this.GetDefaultType(),
17 references to Type
System.Activities (4)
System\Activities\DynamicActivityProperty.cs (2)
58if (Type != null && Name != null) 60return "Property: " + Type.ToString() + " " + Name;
System\Activities\DynamicActivityTypeDescriptor.cs (2)
127if (property.Type == null) 195return this.activityProperty.Type;
System.Activities.Core.Presentation (11)
System\Activities\Core\Presentation\DynamicActivityPropertyChooserViewModel.cs (1)
114clone.Type = property.Type;
System\Activities\Core\Presentation\DynamicActivityPropertyToTooltipConverter.cs (2)
25if (property.Type == null) 31return TypeNameHelper.GetDisplayName(property.Type, false);
System\Activities\Core\Presentation\InvokeDelegateDesigner.xaml.cs (4)
58return instance.Type == typeof(ActivityDelegate) || instance.Type.IsSubclassOf(typeof(ActivityDelegate)); 137if (property == null || !property.Type.IsSubclassOf(typeof(ActivityDelegate))) 142ActivityDelegateMetadata metadata = ActivityDelegateUtilities.GetMetadata(property.Type);
System\Activities\Core\Presentation\InvokeDelegateValidationFeature.cs (4)
139if (property.Type == typeof(ActivityDelegate)) 145if (!property.Type.IsSubclassOf(typeof(ActivityDelegate))) 151if (property.Type.IsAbstract) 157ActivityDelegateMetadata metadata = ActivityDelegateUtilities.GetMetadata(property.Type);
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ActivityBuilderHelper.cs (2)
62if (property.Type != null) 64Type propertyType = property.Type;