Type.GetProperty Method (String, Type, Type[])
Assembly: mscorlib (in mscorlib.dll)
public: virtual PropertyInfo^ GetProperty ( String^ name, Type^ returnType, array<Type^>^ types ) sealed
public final PropertyInfo GetProperty ( String name, Type returnType, Type[] types )
public final function GetProperty ( name : String, returnType : Type, types : Type[] ) : PropertyInfo
Parameters
- name
The String containing the name of the public property to get.
- returnType
The return type of the property.
- types
An array of Type objects representing the number, order, and type of the parameters for the indexed property to get.
-or-
An empty array of the type Type (that is, Type[] types = new Type[0]) to get a property that is not indexed.
Return Value
A PropertyInfo object representing the public property whose parameters match the specified argument types, if found; otherwise, a null reference (Nothing in Visual Basic).| Exception type | Condition |
|---|---|
| More than one property is found with the specified name and matching the specified argument types. | |
| name is a null reference (Nothing in Visual Basic). -or- types is a null reference (Nothing in Visual Basic). -or- One of the elements in types is a null reference (Nothing in Visual Basic). | |
| types is multidimensional. |
The search for name is case-sensitive. The search includes public static and public instance properties.
If the requested type is non-public and the caller does not have ReflectionPermission to reflect non-public objects outside the current assembly, this method returns a null reference (Nothing in Visual Basic).
If the current T:System.Type represents a constructed generic type, this method returns the PropertyInfo with the type parameters replaced by the appropriate type arguments.
If the current Type represents a type parameter in the definition of a generic type or generic method, this method searches the properties of the class constraint.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.