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