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