11 references to PrivateImplementationType
System.CodeDom (11)
Microsoft\CSharp\CSharpCodeGenerator.cs (3)
1444if (e.PrivateImplementationType == null) 1458if (e.PrivateImplementationType != null && !IsCurrentInterface) 1460Output.Write(GetBaseTypeOutput(e.PrivateImplementationType, preferBuiltInTypes: false));
Microsoft\VisualBasic\VBCodeGenerator.cs (6)
1718&& prop.PrivateImplementationType == null) 1737if (e.PrivateImplementationType != null) 1739string impl = GetBaseTypeOutput(e.PrivateImplementationType, preferBuiltInTypes: false); 1745if (e.PrivateImplementationType == null) 1807else if (e.PrivateImplementationType != null) 1810OutputType(e.PrivateImplementationType);
System\CodeDom\Compiler\CodeValidator.cs (2)
285if (e.PrivateImplementationType != null && !IsCurrentInterface) 287ValidateTypeReference(e.PrivateImplementationType);