RuntimeReflectionExtensions.GetRuntimeProperty Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an object that represents a specified property.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetRuntimeProperty ( _ type As Type, _ name As String _ ) As PropertyInfo
Parameters
- type
- Type: System.Type
The type that contains the property.
- name
- Type: System.String
The name of the property.
Return Value
Type: System.Reflection.PropertyInfoAn object that represents the specified property, or Nothing if the property is not found.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter.
Show: