Loads an XML database which is used to create table and field name menu items in the mailings ribbon tab. The method returns immediately and does not wait for the database to be completely loaded.

LoadXMLDatabaseAsync(String)

public async System.Threading.Tasks.Task LoadXMLDatabaseAsync(string fileName);

LoadXMLDatabaseAsync(System.Xml.XmlDocument)

public async System.Threading.Tasks.Task LoadXMLDatabaseAsync(System.Xml.XmlDocument xmlDocument);

LoadXMLDatabaseAsync(System.IO.FileStream)

public async System.Threading.Tasks.Task LoadXMLDatabaseAsync(System.IO.FileStream fileStream);

Parameters

Parameter Description
fileName Specifies an xml file from which the database is loaded.
xmlDocument Specifies an XmlDocument object from which the database is loaded.
fileStream Specifies an xml file from which the database is loaded. The data is loaded from the stream's current position.