1 implementation of CreateCodeType
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
256
public EnvDTE.CodeElement
CreateCodeType
(CodeModelState state, ProjectId projectId, ITypeSymbol typeSymbol)
9 references to CreateCodeType
Microsoft.VisualStudio.LanguageServices.Implementation (9)
CodeModel\CodeTypeRef.cs (1)
71
get { return (EnvDTE.CodeType)CodeModelService.
CreateCodeType
(this.State, _projectId, LookupTypeSymbol()); }
CodeModel\Collections\BasesCollection.cs (2)
94
element = CodeModelService.
CreateCodeType
(this.State, projectId, child);
120
element = CodeModelService.
CreateCodeType
(this.State, projectId, child);
CodeModel\Collections\ExternalNamespaceEnumerator.cs (1)
88
yield return state.CodeModelService.
CreateCodeType
(state, projectId, namedType);
CodeModel\Collections\ExternalTypeCollection.cs (2)
44
element = this.State.CodeModelService.
CreateCodeType
(this.State, _projectId, _typeSymbols[index]);
58
element = this.State.CodeModelService.
CreateCodeType
(this.State, _projectId, _typeSymbols[index]);
CodeModel\ExternalElements\AbstractExternalCodeElement.cs (1)
139
return CodeModelService.
CreateCodeType
(this.State, this.ProjectId, symbol.ContainingType);
CodeModel\InternalElements\CodeDelegate.cs (1)
81
return (EnvDTE.CodeClass)this.CodeModelService.
CreateCodeType
(
CodeModel\RootCodeModel.cs (1)
156
return (EnvDTE.CodeType)CodeModelService.
CreateCodeType
(this.State, _projectId, typeSymbol);