MemberInfo.MemberType Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a derived class, gets a MemberTypes value indicating the type of the member — method, constructor, event, and so on.
Assembly: mscorlib (in mscorlib.dll)
This property is overridden in derived classes, and the override returns the appropriate member type. Therefore, when you examine a set of MemberInfo objects — for example, the array returned by GetMembers — the MemberType property can be used to determine the member type of any given member.
To get the MemberType property, get the class Type. From the Type, get the MethodInfo array. From the MethodInfo array, get the MemberTypes.
The following example displays the member name and type of a specified class.
Note: |
|---|
To run this example, see Building examples that have static TextBlock controls for Windows Phone 8. |
Imports System.Reflection Class Example Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock) ' Get the Type and MemberInfo. Dim MyType As Type = GetType(System.Threading.Thread) ' Display the MemberType and the member. outputBlock.Text &= String.Format("There are {0} members in {1}:" & vbLf, _ MyType.GetMembers().Length, MyType.FullName) For Each mi As MemberInfo In MyType.GetMembers() outputBlock.Text &= String.Format(" {0} - {1}" & vbLf, _ mi.MemberType, mi) Next End Sub End Class
Note: