一个泛型的方法,提供XML对象的数据读取为实际的数据,支持BCL的基础类型。
A generic method that provides data for XML objects to be read as actual data, supporting the underlying types of BCL.
命名空间:
HslCommunication.BasicFramework
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static T GetXmlValue<T>(
XElement element,
string name,
T defaultValue
)
Public Shared Function GetXmlValue(Of T) (
element As XElement,
name As String,
defaultValue As T
) As T
public:
generic<typename T>
static T GetXmlValue(
XElement^ element,
String^ name,
T defaultValue
)
static member GetXmlValue :
element : XElement *
name : string *
defaultValue : 'T -> 'T
参数
- element
- 类型:System.Xml.LinqXElement
元素信息 - name
- 类型:SystemString
属性的名称 - defaultValue
- 类型:T
默认值信息
类型参数
- T
- 类型对象
返回值
类型:
T解析后的值
异常 参见