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.
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.
The FileURL property sets and retrieves a string value.
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);