Type.DeclaringType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取用来声明当前的嵌套类型或泛型类型参数的类型。
public:
abstract property Type ^ DeclaringType { Type ^ get(); };
public:
virtual property Type ^ DeclaringType { Type ^ get(); };
public abstract Type DeclaringType { get; }
public override Type? DeclaringType { get; }
public override Type DeclaringType { get; }
member this.DeclaringType : Type
Public MustOverride ReadOnly Property DeclaringType As Type
Public Overrides ReadOnly Property DeclaringType As Type
属性值
如果当前的类型是嵌套类型,则为表示封闭类型的 Type 对象;如果当前的类型是泛型类型的类型参数,则为泛型类型的定义;如果当前的类型是泛型方法的类型参数,则为用来声明泛型方法的类型;否则为 null
。
实现
示例
此示例显示派生类中方法的声明类型。
using namespace System;
using namespace System::Reflection;
public ref class dtype abstract
{
public:
ref class MyClassA abstract
{
public:
virtual int m() = 0;
};
ref class MyClassB abstract: public MyClassA{};
};
int main()
{
Console::WriteLine( "The declaring type of m is {0}.", dtype::MyClassB::typeid->GetMethod( "m" )->DeclaringType );
}
/* The example produces the following output:
The declaring type of m is dtype+MyClassA.
*/
using System;
using System.Reflection;
public abstract class dtype
{
public abstract class MyClassA
{
public abstract int m();
}
public abstract class MyClassB : MyClassA
{
}
public static void Main(string[] args)
{
Console.WriteLine("The declaring type of m is {0}.",
typeof(MyClassB).GetMethod("m").DeclaringType);
}
}
/* The example produces the following output:
The declaring type of m is dtype+MyClassA.
*/
Imports System.Reflection
Public MustInherit Class dtype
Public MustInherit Class MyClassA
Public MustOverride Function m() As Integer
End Class
Public MustInherit Class MyClassB
Inherits MyClassA
End Class
Public Shared Sub Main()
Console.WriteLine("The declaring type of m is {0}.", _
GetType(MyClassB).GetMethod("m").DeclaringType)
End Sub
End Class
注解
如果当前 Type 对象表示泛型类型的类型参数,则此属性返回泛型类型定义。
如果当前 Type 对象表示泛型方法的类型参数,则此属性返回包含泛型方法定义的类型。 如果类型为泛型,则返回泛型类型定义。 也就是说,下面的代码返回 List<T> 包含泛型方法的泛型类的泛型类型定义 ConvertAll :
Type^ t = List<String^>::typeid->GetMethod("ConvertAll")->GetGenericArguments()[0]->DeclaringType;
Type t = typeof(List<string>).GetMethod("ConvertAll").GetGenericArguments()[0].DeclaringType;
Dim t As Type = GetType(List(Of String)).GetMethod("ConvertAll").GetGenericArguments()(0).DeclaringType
如果当前 Type 表示泛型类型或泛型方法的定义中的类型参数,则 DeclaringType 和 DeclaringMethod 属性标识最初定义泛型类型参数的泛型类型定义或泛型方法定义:
如果 DeclaringMethod 属性返回,则 MethodInfo MethodInfo 表示泛型方法定义,而当前 Type 对象表示泛型方法定义的类型参数。
如果 DeclaringMethod 属性返回
null
,则 DeclaringType 属性始终返回 Type 表示泛型类型定义的对象,而当前 Type 对象表示该泛型类型定义的类型参数。获取 DeclaringType 其 IsGenericParameter 属性引发的类型的属性
false
InvalidOperationException 。