Base:
property
DeclaringType
System.Reflection.MemberInfo.DeclaringType
Implemented interface member:
property
DeclaringType
System.Runtime.InteropServices._Type.DeclaringType
10 overrides of DeclaringType
mscorlib (5)
system\reflection\emit\enumbuilder.cs (1)
334public override Type DeclaringType {
system\reflection\emit\generictypeparameterbuilder.cs (1)
55public override Type DeclaringType { get { return m_type.DeclaringType; } }
system\reflection\emit\typebuilder.cs (1)
1033public override Type DeclaringType
system\reflection\emit\typebuilderinstantiation.cs (1)
72public override Type DeclaringType { get { return m_type.DeclaringType; } }
system\rttype.cs (1)
5132public override Type DeclaringType
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1129public override Type DeclaringType
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1129public override Type DeclaringType
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
246public override Type DeclaringType
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
139public override Type DeclaringType
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
97public override Type DeclaringType
37 references to DeclaringType
mscorlib (10)
system\reflection\emit\aqnbuilder.cs (1)
160for (Type t = rootType; t != null; t = t.IsGenericParameter ? null : t.DeclaringType)
system\reflection\emit\assemblybuilder.cs (2)
2123Type enclosingType = type.DeclaringType; 2138Type enclosingType = type.DeclaringType;
system\reflection\emit\modulebuilder.cs (2)
131object.ReferenceEquals(foundType.DeclaringType, enclosingType)) 486Type enclosingType = type.DeclaringType;
system\reflection\emit\typebuilder.cs (1)
339Type enclosingType = type.DeclaringType;
system\reflection\emit\typebuilderinstantiation.cs (1)
72public override Type DeclaringType { get { return m_type.DeclaringType; } }
system\rttype.cs (1)
1717type = type.DeclaringType;
system\type.cs (2)
954return DeclaringType != null; 991type = type.DeclaringType;
PresentationBuildTasks (2)
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
117type = type.DeclaringType; 138type = type.DeclaringType;
System (1)
compmod\system\codedom\CodeTypeReference.cs (1)
99currentType = currentType.DeclaringType;
System.Activities (1)
System\Activities\DynamicUpdate\ArgumentInfo.cs (1)
291BuildNestedTypeName(sb, type.DeclaringType);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1131get { return _provider.MergeType(_baseReflectionType.DeclaringType); }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1131get { return _provider.MergeType(_baseReflectionType.DeclaringType); }
System.Data.Entity (1)
System\Data\Metadata\Edm\LightweightCodeGenerator.cs (1)
456return ((null == type) || (type.IsPublic && IsPublic(type.DeclaringType)));
System.Data.Services (4)
System\Data\Services\Providers\ReflectionServiceProvider.cs (4)
990Debug.Assert(type.DeclaringType != null, "type.DeclaringType != null"); 991builder.Append(GetModelTypeName(type.DeclaringType)); 1019Debug.Assert(type.DeclaringType != null, "type.DeclaringType != null"); 1020return GetModelTypeName(type.DeclaringType) + "_" + type.Name;
System.Runtime.Serialization (3)
System\Runtime\Serialization\DataContract.cs (2)
1648if (type.DeclaringType == null) 2359? (t.IsNestedPublic || IsTypeVisibleInSerializationModule(t)) && IsTypeVisible(t.DeclaringType)
System\Runtime\Serialization\SchemaExporter.cs (1)
277if (clrType.DeclaringType == null)
System.Workflow.ComponentModel (5)
AuthoringOM\Compiler\TypeSystem\CodeDomLoader.cs (1)
60if (type.DeclaringType != null)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (4)
143if (this.runtimeType.DeclaringType == null) 145return this.typeProvider.GetType(this.runtimeType.DeclaringType.AssemblyQualifiedName); 267while (baseType.DeclaringType != null) 269baseType = baseType.DeclaringType;
System.Xml (6)
System\Xml\Serialization\CodeIdentifier.cs (3)
161if (t.DeclaringType != null && t.DeclaringType != t) { 162index = GetCSharpName(t.DeclaringType, parameters, index, sb);
System\Xml\Serialization\Compiler.cs (1)
58Type declaringType = type.DeclaringType;
System\Xml\Serialization\Types.cs (2)
854for (Type t = type.DeclaringType; t != null && !t.ContainsGenericParameters && !(t.IsAbstract && t.IsSealed); t = t.DeclaringType)
WindowsBase (2)
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
117type = type.DeclaringType; 138type = type.DeclaringType;