Repository.XFRACAS.ProcessXfracasImports
Jump to navigation
Jump to search
Member of: SynthesisAPI.Repository
Immediately processes all XML files in the XFRACAS import queue.
Syntax
.XFRACAS.ProcessXfracasImports()
Example
VB.NET 'Connect to a Synthesis enterprise repository. Dim MyRepository As New Repository MyRepository.ConnectToSQLRepository("MyServer", "MyDatabase") 'Import an XML file into XFRACAS entity ID# 10. Dim ImportXMLSystemID As Integer ImportXMLSystemID = MyRepository.XFRACAS.ImportXfracasXmlFile(10, XFRACASImportType.Incident, "C:\XMLData.xml", "XMLFileDescription") 'Process the imported file. MyRepository.XFRACAS.ProcessXfracasImports()