Repository.XFRACAS.ProcessXfracasImports: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template: | {{Template:API}}{{Template:APIBreadcrumb|10|.[[Repository Class|Repository]]}} | ||
<onlyinclude>Immediately processes imported XML files.</onlyinclude> | |||
== Syntax == | == Syntax == | ||
'''.XFRACAS.ProcessXfracasImports() | |||
== Example == | |||
'''VB.NET''' | |||
' | |||
{{APIComment|'Add code to connect to the Synthesis repository.}} | |||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | |||
{{APIComment|...}} | |||
{{APIComment|'Import an XML file into XFRACAS entity ID# 10.}} | |||
{{APIPrefix|Dim}} ImportXMLSystemID {{APIPrefix|As Integer}} | |||
ImportXMLSystemID = MyRepository.XFRACAS.ImportXFRACASXMLFile(10, XFRACASImportType.Incident, {{APIString|"C:\XMLData.xml"}}, {{APIString|"XMLFileDescription"}}) | |||
{{APIComment|'Process the imported file.}} | |||
MyRepository.XFRACAS.ProcessXfracasImports() | |||
Revision as of 17:30, 27 October 2015
Member of: SynthesisAPI10.Repository
Immediately processes imported XML files.
Syntax
.XFRACAS.ProcessXfracasImports()
Example
VB.NET 'Add code to connect to the Synthesis repository. Dim MyRepository As New Repository ... '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()