Share via


XDocument.Query Method

InfoPath Developer Reference

Retrieves data from a form's associated data adapter object and stores the data in the form's underlying XML Document Object Model (DOM).

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.Query

expression   An expression that returns a XDocument object.

Return Value
Nothing

Remarks

The Query method will return an error if the form does not have an associated data adapter object.

Security Level 2: Can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Example

In the following example, the Query method of the XDocument object is used to query the associated data adapter:

JScript
  XDocument.Query();

See Also