FileQueryConnection.FileLocation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the Uniform Resource Locator (URL) or universal naming convention (UNC) path of the XML file that is associated with the FileQueryConnection object.
public:
abstract property System::String ^ FileLocation { System::String ^ get(); void set(System::String ^ value); };
public abstract string FileLocation { get; set; }
member this.FileLocation : string with get, set
Public MustOverride Property FileLocation As String
Property Value
The URL or UNC of the XML file that is associated with the FileQueryConnection object.
Examples
In the following example, the FileLocation property of the FileQueryConnection class is used to display the URL or UNC of the XML file associated with the FileQueryConnection object named "File1" in the DataConnectionCollection of the form template.
public void FileLocation_Clicked(object sender, ClickedEventArgs e)
FileQueryConnection myConnection = this.DataConnections("File1");
MessageBox.Show(myConnection.FileLocation);
End Sub
Public Sub FileLocation_Clicked(ByVal sender As Object, _
ByVal e As ClickedEventArgs)
Dim myConnection As FileQueryConnection = _
Me.DataConnections("File1")
MessageBox.Show(myConnection.FileLocation)
End Sub
Remarks
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 InfoPath Filler or in a Web browser.