3 instantiations of CodeNamespaceCollection
System (2)
compmod\system\codedom\CodeCompileUnit.cs (1)
31
private CodeNamespaceCollection namespaces = new
CodeNamespaceCollection
();
compmod\system\codedom\CodeNamespace.cs (1)
34
private CodeNamespaceCollection namespaces = new
CodeNamespaceCollection
();
System.Workflow.ComponentModel (1)
Shared\XomlSerializationHelpers.cs (1)
212
CodeNamespaceCollection codeNamespaces = new
CodeNamespaceCollection
();
35 references to CodeNamespaceCollection
System (17)
compmod\system\codedom\CodeCompileUnit.cs (2)
31
private
CodeNamespaceCollection
namespaces = new CodeNamespaceCollection();
54
public
CodeNamespaceCollection
Namespaces {
compmod\system\codedom\CodeNamespace.cs (1)
34
private
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
'/>.
40
public 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.
90
public 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)
1328
CodeNamespaceCollection
codeNamespaceCollection = codeCompileUnit.Namespaces;
System.ServiceModel (2)
System\ServiceModel\Description\ServiceContractGenerator.cs (2)
748
readonly
CodeNamespaceCollection
codeNamespaces;
751
public NamespaceHelper(
CodeNamespaceCollection
namespaces)
System.Workflow.Activities (6)
Common\CompModHelpers.cs (1)
493
internal static CodeTypeDeclaration GetCodeNamespaceAndClass(
CodeNamespaceCollection
namespaces, string namespaceName, string className, out CodeNamespace codeNamespace)
WebServiceReceive.cs (5)
659
CodeNamespaceCollection
codeNamespaces = manager.Context[typeof(
CodeNamespaceCollection
)] as
CodeNamespaceCollection
;
662
throw new InvalidOperationException(SR.GetString(SR.Error_ContextStackItemMissing, typeof(
CodeNamespaceCollection
).Name));
691
private CodeTypeDeclaration CreateOrGetServiceDeclaration(Activity rootActivity,
CodeNamespaceCollection
codeNamespaceCollection)
System.Workflow.ComponentModel (9)
AuthoringOM\Compiler\CodeGeneration\ActivityCodeGenerator.cs (4)
63
CodeNamespaceCollection
codeNamespaces = manager.Context[typeof(
CodeNamespaceCollection
)] as
CodeNamespaceCollection
;
65
throw new InvalidOperationException(SR.GetString(SR.Error_ContextStackItemMissing, typeof(
CodeNamespaceCollection
).Name));
Shared\CompModHelpers.cs (1)
491
internal static CodeTypeDeclaration GetCodeNamespaceAndClass(
CodeNamespaceCollection
namespaces, string namespaceName, string className, out CodeNamespace codeNamespace)
Shared\XomlSerializationHelpers.cs (4)
210
internal static
CodeNamespaceCollection
GenerateCodeFromXomlDocument(Activity rootActivity, string filePath, string rootNamespace, SupportedLanguages language, IServiceProvider serviceProvider)
212
CodeNamespaceCollection
codeNamespaces = new CodeNamespaceCollection();
383
internal static void FixStandardNamespacesAndRootNamespace(
CodeNamespaceCollection
codeNamespaces, string rootNS, SupportedLanguages language)
416
internal static void ReapplyRootNamespace(
CodeNamespaceCollection
codeNamespaces, string rootNS, SupportedLanguages language)