XmlForm.DataConnections Property (Microsoft.Office.InfoPath)

Gets a DataConnectionCollection object associated with the form.

Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in microsoft.office.infopath.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property DataConnections As DataConnectionCollection
'Usage
Dim instance As XmlForm
Dim value As DataConnectionCollection

value = instance.DataConnections
public abstract DataConnectionCollection DataConnections { get; }

Property Value

A DataConnectionCollection that contains any DataConnection objects associated with the form.

Remarks

Note

The DataConnections property provides similar functionality to the DataAdapters property of the XDocument object in the COM/Scripting object model, and to the DataAdapters property of the _XDocument2 interface of the InfoPath 2003-compatible managed code object model.

This member 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.

This type or member can be accessed from code running in forms opened in Microsoft Office InfoPath 2007 or in a Web browser.

Example

In the following example, the DataConnections property of the XmlForm class is used to set a reference to a data connection called "Main query".

DataConnection mainQuery = this.DataConnections["Main query"];
Dim mainQuery As DataConnection = Me.DataConnections("Main query")

See Also

Reference

XmlForm Class
XmlForm Members
Microsoft.Office.InfoPath Namespace