DataBinder.GetPropertyValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索属性的值。
重载
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
包含要检索的值的属性名称。
返回
指定的属性的值。
例外
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
指定。
例外
container
中的对象不具有由 propName
指定的属性。
示例
的示例 DataBinder 演示了此方法的使用。
注解
此版本的 GetPropertyValue 方法用于检索对象中属性的值并设置其格式。