Files
docs-desktop/dotnet-desktop-guide/framework/wpf/data/linq-to-xml-dynamic-properties.md
T
Andy De George da363692ff Initial WPF content migrated (#17)
* Reset branch for WPF changes

* Convert BMP to PNG; fix link-out-of-scope err

* Add snippets for WPF... 6794 files!!!!

* Add missing snippets

* update file updated between migration

* Fix paths to include

* update breadcrumb and toc

* fix index links

* fix index links

* fix index links

* fix markdown
2020-09-04 09:46:28 -07:00

2.3 KiB

title, ms.date, ms.topic
title ms.date ms.topic
LINQ to XML dynamic properties reference 10/22/2019 reference

LINQ to XML dynamic properties

This section provides reference information about the dynamic properties in LINQ to XML. Specifically, these properties are exposed by the xref:System.Xml.Linq.XAttribute and xref:System.Xml.Linq.XElement classes, which are in the xref:System.Xml.Linq namespace.

As explained in the topic Overview of WPF data binding with LINQ to XML, each of the dynamic properties is equivalent to a standard public property or method in the same class. These standard members should be used for most purposes; dynamic properties are provided specifically for LINQ to XML data binding scenarios. For more information about the standard members of these classes, see the xref:System.Xml.Linq.XAttribute and xref:System.Xml.Linq.XElement reference topics.

With respect to their resolved values, the dynamic properties in this section fall into two categories:

All the dynamic properties that return an indexed value of type xref:System.Collections.Generic.IEnumerable%601 use deferred execution. For more information about deferred execution, see Introduction to LINQ queries (C#).

Reference

See also