PropertyDescriptor.GetValue(Object) 方法

定义

当在派生类中被重写时,获取组件上的属性的当前值。

public:
 abstract System::Object ^ GetValue(System::Object ^ component);
public abstract object GetValue (object component);
public abstract object? GetValue (object? component);
abstract member GetValue : obj -> obj
Public MustOverride Function GetValue (component As Object) As Object

参数

component
Object

具有为其检索值的属性的组件。

返回

给定组件的属性的值。

注解

通常,此方法是通过反射实现的。

此方法自动调用 的 更改前方法 OnComponentChanging、 和 更改后方法 OnComponentChangedIComponentChangeService

实施者说明

重写此方法时,它通过调用需要实现的“GetMyProperty”方法获取属性的当前值。 该方法中的异常应传递。

适用于