ImageField.GetValue(Control, String, PropertyDescriptor) 方法

定义

从指定控件检索指定字段的值。

protected:
 virtual System::Object ^ GetValue(System::Web::UI::Control ^ controlContainer, System::String ^ fieldName, System::ComponentModel::PropertyDescriptor ^ % cachedDescriptor);
protected virtual object GetValue (System.Web.UI.Control controlContainer, string fieldName, ref System.ComponentModel.PropertyDescriptor cachedDescriptor);
abstract member GetValue : System.Web.UI.Control * string * PropertyDescriptor -> obj
override this.GetValue : System.Web.UI.Control * string * PropertyDescriptor -> obj
Protected Overridable Function GetValue (controlContainer As Control, fieldName As String, ByRef cachedDescriptor As PropertyDescriptor) As Object

参数

controlContainer
Control

包含字段值的 Control

fieldName
String

要为其检索值的字段的名称。

cachedDescriptor
PropertyDescriptor

由引用传递的 PropertyDescriptor,它表示字段的属性。

返回

Object

指定字段的值。

例外

controlContainer 参数为 null

  • 或 - 与容器控件相关联的数据项为 null

  • 或 - 未能找到 fieldName 参数指定的字段。

注解

该方法 GetValue 是对象用来 ImageField 确定指定字段值的帮助程序方法。

继承者说明

扩展 ImageField 对象时,可以重写此方法以提供自定义例程来确定字段的值。

适用于

另请参阅