Implemented interface member:
method
GetNestedType
System.Runtime.InteropServices._Type.GetNestedType(System.String, System.Reflection.BindingFlags)
13 overrides of GetNestedType
mscorlib (7)
system\reflection\emit\enumbuilder.cs (1)
209public override Type GetNestedType(String name, BindingFlags bindingAttr)
system\reflection\emit\generictypeparameterbuilder.cs (1)
148public override Type GetNestedType(String name, BindingFlags bindingAttr) { throw new NotSupportedException(); }
system\reflection\emit\symboltype.cs (1)
489public override Type GetNestedType(String name, BindingFlags bindingAttr)
system\reflection\emit\typebuilder.cs (1)
1255public override Type GetNestedType(String name, BindingFlags bindingAttr)
system\reflection\emit\typebuilderinstantiation.cs (1)
186public override Type GetNestedType(String name, BindingFlags bindingAttr) { throw new NotSupportedException(); }
system\reflection\typedelegator.cs (1)
170public override Type GetNestedType(String name, BindingFlags bindingAttr)
system\rttype.cs (1)
3426public override Type GetNestedType(String fullname, BindingFlags bindingAttr)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1179public override Type GetNestedType(string name, BindingFlags bindingAttr)
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1179public override Type GetNestedType(string name, BindingFlags bindingAttr)
System.Web (1)
Compilation\DelayLoadType.cs (1)
132public override Type GetNestedType(string name, BindingFlags bindingAttr) {
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
487public override Type GetNestedType(string name, BindingFlags bindingAttr)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
368public override Type GetNestedType(string name, BindingFlags bindingAttr)
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
380public override Type GetNestedType(string name, BindingFlags bindingAttr)
9 references to GetNestedType
mscorlib (4)
system\reflection\typedelegator.cs (1)
172return typeImpl.GetNestedType(name,bindingAttr);
system\reflection\typeinfo.cs (1)
108var nt=GetNestedType(name, Type.DeclaredOnlyLookup);
system\type.cs (1)
751return GetNestedType(name,Type.DefaultLookup);
system\typenameparser.cs (1)
291type = type.GetNestedType(names[i], bindingFlags);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1181return _provider.MergeType(_baseReflectionType.GetNestedType(name, bindingAttr));
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1181return _provider.MergeType(_baseReflectionType.GetNestedType(name, bindingAttr));
System.Web (1)
Compilation\DelayLoadType.cs (1)
133return Type.GetNestedType(name, bindingAttr);
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
909member = baseType.GetNestedType(memberSignature.Name, bindingAttr);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
370Type nestedType = this.runtimeType.GetNestedType(name, bindingAttr);