2 instantiations of CodeNamespaceCollection
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.CodeDom\System\CodeCompileUnit.cs (1)
27private CodeNamespaceCollection _namespaces = new CodeNamespaceCollection();
FrameworkFork\Microsoft.CodeDom\System\CodeNamespace.cs (1)
30private CodeNamespaceCollection _namespaces = new CodeNamespaceCollection();
20 references to CodeNamespaceCollection
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.CodeDom\System\CodeCompileUnit.cs (2)
27private CodeNamespaceCollection _namespaces = new CodeNamespaceCollection(); 51public CodeNamespaceCollection Namespaces
FrameworkFork\Microsoft.CodeDom\System\CodeNamespace.cs (1)
30private CodeNamespaceCollection _namespaces = new CodeNamespaceCollection();
FrameworkFork\Microsoft.CodeDom\System\CodeNamespaceCollection.cs (14)
26/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/>. 35/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> based on another <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/>. 38public CodeNamespaceCollection(CodeNamespaceCollection value) 45/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> containing any array of <see cref='Microsoft.CodeDom.CodeNamespace'/> objects. 70/// <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> .</para> 78/// <para>Copies the elements of an array to the end of the <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/>.</para> 94/// Adds the contents of another <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> to the end of the collection. 97public void AddRange(CodeNamespaceCollection value) 112/// <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeNamespace'/>.</para> 120/// <para>Copies the <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 130/// the <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> .</para> 138/// <para>Inserts a <see cref='Microsoft.CodeDom.CodeNamespace'/> into the <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> at the specified index.</para> 147/// <see cref='Microsoft.CodeDom.CodeNamespaceCollection'/> .</para>
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (1)
1260CodeNamespaceCollection codeNamespaceCollection = _codeCompileUnit.Namespaces;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (2)
694private readonly CodeNamespaceCollection _codeNamespaces; 697public NamespaceHelper(CodeNamespaceCollection namespaces)