Olvasás angol nyelven Szerkesztés

Megosztás a következőn keresztül:


XElement.Value Property

Definition

Gets or sets the concatenated text contents of this element.

C#
public string Value { get; set; }

Property Value

A String that contains all of the text content of this element. If there are multiple text nodes, they will be concatenated.

Examples

The following example uses this property to retrieve the text of an element with mixed content.

C#
XElement el = XElement.Parse("<Root>This is <b>mixed</b> content</Root>");
Console.WriteLine("{0}", el.Value);

This example produces the following output:

This is mixed content

Remarks

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<T> of Int32. If the element does not exist, the nullable type is set to null. By contrast, if you want to use this property, you must make sure that the Element method does not return null before you access this property.

Applies to

Termék Verziók
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

See also