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