InternalXmlHelper.Value[IEnumerable<XElement>] Property

Definition

Gets or sets the value of an XML element. This property is not intended to be used from your code.

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

Parameters

source
IEnumerable<XElement>

A collection of XML elements to get a value from or set a value for.

Property Value

The value of the first XML element in the supplied collection. If the collection is empty, returns Nothing.

Applies to

See also