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