InternalXmlHelper.AttributeValue[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 XML 特性的值。 此属性不应在代码中使用。
重载
AttributeValue[IEnumerable<XElement>, XName] |
获取或设置 XML 特性的值。 此属性不应在代码中使用。 |
AttributeValue[XElement, XName] |
获取或设置 XML 特性的值。 此属性不应在代码中使用。 |
AttributeValue[IEnumerable<XElement>, XName]
获取或设置 XML 特性的值。 此属性不应在代码中使用。
public:
static property System::String ^ AttributeValue[System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^, System::Xml::Linq::XName ^] { System::String ^ get(System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ source, System::Xml::Linq::XName ^ name); void set(System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ source, System::Xml::Linq::XName ^ name, System::String ^ value); };
public static string AttributeValue[System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> source, System.Xml.Linq.XName name] { get; set; }
static member AttributeValue(seq<System.Xml.Linq.XElement> * System.Xml.Linq.XName) : string with get, set
Public Shared Property AttributeValue(source As IEnumerable(Of XElement), name As XName) As String
参数
- source
- IEnumerable<XElement>
要从中获取特性值或为其设置特性值的 XML 元素的集合。
- name
- XName
要从中获取值或为其设置值的 XML 特性的名称。
属性值
提供的 XML 元素集合的第一个元素中由 name
参数标识的 XML 特性的值。 如果集合为空,则返回 Nothing
。
另请参阅
适用于
AttributeValue[XElement, XName]
获取或设置 XML 特性的值。 此属性不应在代码中使用。
public:
static property System::String ^ AttributeValue[System::Xml::Linq::XElement ^, System::Xml::Linq::XName ^] { System::String ^ get(System::Xml::Linq::XElement ^ source, System::Xml::Linq::XName ^ name); void set(System::Xml::Linq::XElement ^ source, System::Xml::Linq::XName ^ name, System::String ^ value); };
public static string AttributeValue[System.Xml.Linq.XElement source, System.Xml.Linq.XName name] { get; set; }
static member AttributeValue(System.Xml.Linq.XElement * System.Xml.Linq.XName) : string with get, set
Public Shared Property AttributeValue(source As XElement, name As XName) As String
参数
- source
- XElement
要从中获取特性值或为其设置特性值的 XML 元素。
- name
- XName
要从中获取值或为其设置值的 XML 特性的名称。
属性值
提供的 XML 元素中由 name
参数标识的 XML 特性的值。