DataBinder.GetPropertyValue 方法

定义

检索属性的值。

重载

GetPropertyValue(Object, String)

检索指定对象的指定属性的值。

GetPropertyValue(Object, String, String)

检索指定对象的指定属性的值,然后设置结果的格式。

GetPropertyValue(Object, String)

检索指定对象的指定属性的值。

public:
 static System::Object ^ GetPropertyValue(System::Object ^ container, System::String ^ propName);
public static object GetPropertyValue (object container, string propName);
static member GetPropertyValue : obj * string -> obj
Public Shared Function GetPropertyValue (container As Object, propName As String) As Object

参数

container
Object

包含属性的对象。

propName
String

包含要检索的值的属性名称。

返回

指定的属性的值。

例外

containernull

- 或 -

propNamenull 或空字符串 ("")。

container 中的对象不具有由 propName 指定的属性。

示例

的示例 DataBinder 演示了此方法的使用。

注解

方法 GetPropertyValue 用于检索 对象中属性的值。

适用于

GetPropertyValue(Object, String, String)

检索指定对象的指定属性的值,然后设置结果的格式。

public:
 static System::String ^ GetPropertyValue(System::Object ^ container, System::String ^ propName, System::String ^ format);
public static string GetPropertyValue (object container, string propName, string format);
static member GetPropertyValue : obj * string * string -> string
Public Shared Function GetPropertyValue (container As Object, propName As String, format As String) As String

参数

container
Object

包含属性的对象。

propName
String

包含要检索的值的属性名称。

format
String

指定结果显示格式的字符串。

返回

指定的属性的值,格式由 format 指定。

例外

containernull

- 或 -

propNamenull 或空字符串 ("")。

container 中的对象不具有由 propName 指定的属性。

示例

的示例 DataBinder 演示了此方法的使用。

注解

此版本的 GetPropertyValue 方法用于检索对象中属性的值并设置其格式。

适用于