1 instantiation of ExternalTypeCollection
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\Collections\ExternalTypeCollection.cs (1)
26var collection = new ExternalTypeCollection(state, parent, projectId, typeSymbols);
4 references to ExternalTypeCollection
Microsoft.VisualStudio.LanguageServices.Implementation (4)
CodeModel\Collections\ExternalTypeCollection.cs (1)
26var collection = new ExternalTypeCollection(state, parent, projectId, typeSymbols);
CodeModel\ExternalElements\AbstractExternalCodeType.cs (1)
69return ExternalTypeCollection.Create(this.State, this, this.ProjectId,
CodeModel\ExternalElements\ExternalCodeClass.cs (1)
64get { return ExternalTypeCollection.Create(this.State, this, this.ProjectId, TypeSymbol.AllInterfaces); }
CodeModel\ExternalElements\ExternalCodeStruct.cs (1)
51get { return ExternalTypeCollection.Create(this.State, this, this.ProjectId, TypeSymbol.AllInterfaces); }