Implemented interface member:
property
IsNestedPublic
System.Runtime.InteropServices._Type.IsNestedPublic
23 references to IsNestedPublic
mscorlib (2)
system\rttype.cs (1)
2486bool isPublic = type.IsNestedPublic || type.IsPublic;
system\type.cs (1)
987if (!type.IsNestedPublic)
PresentationBuildTasks (2)
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
115while (type.IsNestedAssembly || type.IsNestedFamORAssem || (origType != type && type.IsNestedPublic)) 136while (type.IsNestedPublic)
PresentationFramework (1)
src\Framework\System\Windows\Markup\Primitives\MarkupWriter.cs (1)
160if (type.IsNestedPublic)
System (1)
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1045if ((!(eventInfo.DeclaringType.IsPublic || eventInfo.DeclaringType.IsNestedPublic)) && (eventInfo.DeclaringType.Assembly == typeof(ReflectTypeDescriptionProvider).Assembly)) {
System.Runtime.Serialization (1)
System\Runtime\Serialization\DataContract.cs (1)
2359? (t.IsNestedPublic || IsTypeVisibleInSerializationModule(t)) && IsTypeVisible(t.DeclaringType)
System.Web (2)
UI\WebParts\WebPartUtil.cs (1)
42if (!(connectionPointType.IsPublic || connectionPointType.IsNestedPublic)) {
Util\FactoryGenerator.cs (1)
97if (!(type.IsPublic || type.IsNestedPublic)) {
System.Web.Extensions (1)
Compilation\WCFModel\VSWCFServiceContractGenerator.cs (1)
1111return t.IsPublic || t.IsNestedPublic;
System.Workflow.Activities (2)
Rules\Parser\Parser.cs (1)
498return (type.IsPublic || type.IsNestedPublic
Rules\RuleValidation.cs (1)
3392if ((type != null) && (type.IsPublic || type.IsNestedPublic) && (type.IsSealed) && (IsMarkedExtension(type)))
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (1)
102if ((type != null) && (type.IsPublic || type.IsNestedPublic || (this.isLocalAssembly && type.Attributes != TypeAttributes.NestedPrivate)))
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
744isPublic = (memberInfo as Type).IsPublic || (memberInfo as Type).IsNestedPublic;
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
576isPublic = (memberInfo as Type).IsPublic || (memberInfo as Type).IsNestedPublic;
System.Xml (6)
System\Xml\Serialization\Types.cs (2)
696if (!type.IsPublic && !type.IsNestedPublic) { 853if (type.IsNestedPublic) {
System\Xml\Serialization\XmlSerializationGeneratedCode.cs (2)
193if (!type.IsPublic && !type.IsNestedPublic) 348if (!type.IsPublic && !type.IsNestedPublic)
System\Xml\Serialization\XmlSerializationILGen.cs (2)
225if (!type.IsPublic && !type.IsNestedPublic) 433if (!type.IsPublic && !type.IsNestedPublic)
WindowsBase (2)
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
115while (type.IsNestedAssembly || type.IsNestedFamORAssem || (origType != type && type.IsNestedPublic)) 136while (type.IsNestedPublic)