EnumBuilder.GetNestedType(String, BindingFlags) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回此类型声明的指定嵌套的类型。
public:
override Type ^ GetNestedType(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public override Type? GetNestedType (string name, System.Reflection.BindingFlags bindingAttr);
public override Type GetNestedType (string name, System.Reflection.BindingFlags bindingAttr);
override this.GetNestedType : string * System.Reflection.BindingFlags -> Type
Public Overrides Function GetNestedType (name As String, bindingAttr As BindingFlags) As Type
参数
返回
表示符合指定要求的嵌套类型的 Type 对象(如果找到);否则为 null
。
例外
不完整类型目前不支持此方法。
注解
解决方法是,若要检索完成类型的嵌套类型,请使用 Type.GetType 或 Assembly.GetType 检索类型,并在检索的类型上使用反射。