FileURL Property

Microsoft Office InfoPath

Sets or retrieves the Uniform Resource Locator (URL) of the XML file that is associated with the XMLFileAdapter object.

expression.FileURL

expression    Required. An expression that returns a reference to the XMLFileAdapter 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.

Remarks

The FileURL property sets and retrieves a string value.

Example

In the following example, the FileURL property of the XMLFileAdapter object, accessed through the QueryAdapter property of the XDocument object, is used to display the URL of the XML file in a message box:

XDocument.UI.Alert("XML file URL: " + XDocument.QueryAdapter.FileURL);