2 writes to valueType
System.Activities (2)
System\Activities\XamlIntegration\ActivityWithResultConverter.cs (2)
97
this.
valueType
= typeof(T);
102
this.
valueType
= this.valueType.GetGenericArguments()[0];
5 references to valueType
System.Activities (5)
System\Activities\XamlIntegration\ActivityWithResultConverter.cs (5)
101
Fx.Assert(this.
valueType
.IsGenericType && this.
valueType
.GetGenericArguments().Length == 1, "Should only get Location<T> here");
102
this.valueType = this.
valueType
.GetGenericArguments()[0];
103
Type concreteHelperType = LocationHelperType.MakeGenericType(typeof(T), this.
valueType
);
114
this.baseConverter = TypeDescriptor.GetConverter(this.
valueType
);