Type.ReflectedType Property

 

Gets the class object that was used to obtain this member.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

Public Overrides ReadOnly Property ReflectedType As Type

Property Value

Type: System.Type

The Type object through which this Type object was obtained.

For Type objects, the value of this property is always the same as the value of the DeclaringType property.

This example displays the reflected type of a nested class.

Imports System
Imports System.Reflection

Public MustInherit Class MyClassA

    Public MustInherit Class MyClassB

    End Class

    Public Shared Sub Main()
        Console.WriteLine("Reflected type of MyClassB is {0}", _
           GetType(MyClassB).ReflectedType)
	'Outputs MyClassA, the enclosing type.
    End Sub
End Class

.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: