RuntimeReflectionExtensions.GetRuntimeProperty(Type, String) Method (System.Reflection) (original) (raw)

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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