RuntimeReflectionExtensions.GetRuntimeProperty(Type, String) Method

Definition

Retrieves an object that represents a specified property.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Reflection::PropertyInfo ^ GetRuntimeProperty(Type ^ type, System::String ^ name);
public static System.Reflection.PropertyInfo GetRuntimeProperty (this Type type, string name);
public static System.Reflection.PropertyInfo? GetRuntimeProperty (this Type type, string name);
static member GetRuntimeProperty : Type * string -> System.Reflection.PropertyInfo
<Extension()>
Public Function GetRuntimeProperty (type As Type, name As String) As PropertyInfo

Parameters

type
Type

The type that contains the property.

name
String

The name of the property.

Returns

An object that represents the specified property, or null if the property is not found.

Exceptions

type is null.

-or-

name is null.

type is not a RuntimeType.

More than one property with the requested name was found.

Applies to

See also