XElement.Value Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the concatenated text contents of this element.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Property Value
Type: System.StringA String that contains all of the text content of this element. If there are multiple text nodes, they will be concatenated.
Using this property, you can get or set the value of an element.
Setting this property will raise the Changed and the Changing events.
If you want to get the value of an element but you are not sure that it exists, it is more convenient to use the explicit conversion operators, and assign the element to a nullable type such as string or Nullable(Of T) of Int32. If the element does not exist, the nullable type is set to Nothing. By contrast, if you want to use this property, you must make sure that the Element method does not return Nothing before you access this property.