DataBusDataSource.GetProperty 方法

定义

检索 DataBusDataSource 类的特定属性。

重载

GetProperty<T>(String)

检索具有指定名称的数据源的属性。

GetProperty<T>(String, T)

检索具有指定名称的数据源的属性。

GetProperty<T>(String)

检索具有指定名称的数据源的属性。

protected:
generic <typename T>
 T GetProperty(System::String ^ propertyName);
protected T GetProperty<T> (string propertyName);
member this.GetProperty : string -> 'T
Protected Function GetProperty(Of T) (propertyName As String) As T

类型参数

T

属性的泛型类型。

参数

propertyName
String

属性名称。

返回

T

属性的指定名称。

适用于

GetProperty<T>(String, T)

检索具有指定名称的数据源的属性。

protected:
generic <typename T>
 T GetProperty(System::String ^ propertyName, T defaultValue);
protected T GetProperty<T> (string propertyName, T defaultValue);
member this.GetProperty : string * 'T -> 'T
Protected Function GetProperty(Of T) (propertyName As String, defaultValue As T) As T

类型参数

T

属性的类型。

参数

propertyName
String

表示属性名称的字符串。

defaultValue
T

属性的默认值。

返回

T

一个对象,表示属性的默认值。

适用于