3 instantiations of CodeNamespaceCollection
System (2)
compmod\system\codedom\CodeCompileUnit.cs (1)
31private CodeNamespaceCollection namespaces = new CodeNamespaceCollection();
compmod\system\codedom\CodeNamespace.cs (1)
34private CodeNamespaceCollection namespaces = new CodeNamespaceCollection();
System.Workflow.ComponentModel (1)
Shared\XomlSerializationHelpers.cs (1)
212CodeNamespaceCollection codeNamespaces = new CodeNamespaceCollection();
35 references to CodeNamespaceCollection
System (17)
compmod\system\codedom\CodeCompileUnit.cs (2)
31private CodeNamespaceCollection namespaces = new CodeNamespaceCollection(); 54public CodeNamespaceCollection Namespaces {
compmod\system\codedom\CodeNamespace.cs (1)
34private CodeNamespaceCollection namespaces = new CodeNamespaceCollection();
compmod\system\codedom\CodeNamespaceCollection.cs (14)
29/// Initializes a new instance of <see cref='System.CodeDom.CodeNamespaceCollection'/>. 37/// Initializes a new instance of <see cref='System.CodeDom.CodeNamespaceCollection'/> based on another <see cref='System.CodeDom.CodeNamespaceCollection'/>. 40public CodeNamespaceCollection(CodeNamespaceCollection value) { 46/// Initializes a new instance of <see cref='System.CodeDom.CodeNamespaceCollection'/> containing any array of <see cref='System.CodeDom.CodeNamespace'/> objects. 67/// <see cref='System.CodeDom.CodeNamespaceCollection'/> .</para> 74/// <para>Copies the elements of an array to the end of the <see cref='System.CodeDom.CodeNamespaceCollection'/>.</para> 87/// Adds the contents of another <see cref='System.CodeDom.CodeNamespaceCollection'/> to the end of the collection. 90public void AddRange(CodeNamespaceCollection value) { 102/// <see cref='System.CodeDom.CodeNamespaceCollection'/> contains the specified <see cref='System.CodeDom.CodeNamespace'/>.</para> 109/// <para>Copies the <see cref='System.CodeDom.CodeNamespaceCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 118/// the <see cref='System.CodeDom.CodeNamespaceCollection'/> .</para> 125/// <para>Inserts a <see cref='System.CodeDom.CodeNamespace'/> into the <see cref='System.CodeDom.CodeNamespaceCollection'/> at the specified index.</para> 133/// <see cref='System.CodeDom.CodeNamespaceCollection'/> .</para>
System.Runtime.Serialization (1)
System\Runtime\Serialization\CodeExporter.cs (1)
1328CodeNamespaceCollection codeNamespaceCollection = codeCompileUnit.Namespaces;
System.ServiceModel (2)
System\ServiceModel\Description\ServiceContractGenerator.cs (2)
748readonly CodeNamespaceCollection codeNamespaces; 751public NamespaceHelper(CodeNamespaceCollection namespaces)
System.Workflow.Activities (6)
Common\CompModHelpers.cs (1)
493internal static CodeTypeDeclaration GetCodeNamespaceAndClass(CodeNamespaceCollection namespaces, string namespaceName, string className, out CodeNamespace codeNamespace)
WebServiceReceive.cs (5)
659CodeNamespaceCollection codeNamespaces = manager.Context[typeof(CodeNamespaceCollection)] as CodeNamespaceCollection; 662throw new InvalidOperationException(SR.GetString(SR.Error_ContextStackItemMissing, typeof(CodeNamespaceCollection).Name)); 691private CodeTypeDeclaration CreateOrGetServiceDeclaration(Activity rootActivity, CodeNamespaceCollection codeNamespaceCollection)
System.Workflow.ComponentModel (9)
AuthoringOM\Compiler\CodeGeneration\ActivityCodeGenerator.cs (4)
63CodeNamespaceCollection codeNamespaces = manager.Context[typeof(CodeNamespaceCollection)] as CodeNamespaceCollection; 65throw new InvalidOperationException(SR.GetString(SR.Error_ContextStackItemMissing, typeof(CodeNamespaceCollection).Name));
Shared\CompModHelpers.cs (1)
491internal static CodeTypeDeclaration GetCodeNamespaceAndClass(CodeNamespaceCollection namespaces, string namespaceName, string className, out CodeNamespace codeNamespace)
Shared\XomlSerializationHelpers.cs (4)
210internal static CodeNamespaceCollection GenerateCodeFromXomlDocument(Activity rootActivity, string filePath, string rootNamespace, SupportedLanguages language, IServiceProvider serviceProvider) 212CodeNamespaceCollection codeNamespaces = new CodeNamespaceCollection(); 383internal static void FixStandardNamespacesAndRootNamespace(CodeNamespaceCollection codeNamespaces, string rootNS, SupportedLanguages language) 416internal static void ReapplyRootNamespace(CodeNamespaceCollection codeNamespaces, string rootNS, SupportedLanguages language)