9 references to NestedPrivate
mscorlib (2)
system\reflection\emit\typebuilder.cs (1)
1957return DefineNestedTypeNoLock(name, TypeAttributes.NestedPrivate, null, null, PackingSize.Unspecified, UnspecifiedTypeSize);
system\type.cs (1)
1029get {return ((GetAttributeFlagsImpl() & TypeAttributes.VisibilityMask) == TypeAttributes.NestedPrivate);}
System (3)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
2787case TypeAttributes.NestedPrivate:
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
943case TypeAttributes.NestedPrivate:
compmod\system\codedom\compiler\CodeGenerator.cs (1)
1152case TypeAttributes.NestedPrivate:
System.Activities (1)
System\Activities\XamlIntegration\TextExpressionCompiler.cs (1)
1748typedDataContext.TypeAttributes = TypeAttributes.NestedPrivate;
System.Workflow.ComponentModel (3)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (2)
102if ((type != null) && (type.IsPublic || type.IsNestedPublic || (this.isLocalAssembly && type.Attributes != TypeAttributes.NestedPrivate))) 117if (type.IsPublic || (this.isLocalAssembly && type.Attributes != TypeAttributes.NestedPrivate))
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
108typeAttributes |= ((declaringType != null) ? TypeAttributes.NestedPrivate : TypeAttributes.NotPublic);