5 writes to TargetType
System (3)
compmod\system\codedom\CodeCastExpression.cs (3)
47TargetType = targetType; 55TargetType = new CodeTypeReference(targetType); 63TargetType = new CodeTypeReference(targetType);
System.Workflow.Activities (1)
Rules\Expressions.cs (1)
2232newCast.TargetType = TypeReferenceExpression.CloneType(castExpr.TargetType);
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (1)
271codeExp = new CodeCastExpression { TargetType = new CodeTypeReference(typeof(object)), Expression = new CodePrimitiveExpression(null) };
11 references to TargetType
System (4)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
802OutputType(e.TargetType);
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
1182OutputType(e.TargetType); 1183OutputArrayPostfix(e.TargetType);
compmod\system\codedom\compiler\CodeValidator.cs (1)
692ValidateTypeReference(e.TargetType);
System.Workflow.Activities (7)
Rules\Expressions.cs (7)
2019if (castExpr.TargetType == null) 2033Type toType = validation.ResolveType(castExpr.TargetType); 2208if (castExpr.TargetType == null) 2220RuleDecompiler.DecompileType(stringBuilder, castExpr.TargetType); 2232newCast.TargetType = TypeReferenceExpression.CloneType(castExpr.TargetType); 2242return TypeReferenceExpression.MatchType(castExpr.TargetType, castComperand.TargetType) &&