Repository.XFRACAS.SerializeXMLObjectToByteArray: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<onlyinclude>Serializes | <onlyinclude>Serializes the XML file for import into XFRACAS. Returns a '''Boolean''' value; when true, indicates a successful serialization.</onlyinclude> | ||
== Syntax == | == Syntax == |
Revision as of 18:45, 9 November 2015
Member of: SynthesisAPI9.Repository
Serializes the XML file for import into XFRACAS. Returns a Boolean value; when true, indicates a successful serialization.
Syntax
.XFRACAS.SerializeXMLObjectToByteArray(pData(), pObject)
Parameters
pData
- Required. Byte. A defined byte array.
pObject
- Required. A serializable XML object.
Example
VB.NET 'Add code to connect to the Synthesis enterprise repository. Dim MyRepository As New Repository ... 'Define a serializable XML object and populate with values to import. Dim xmlObject As Object = Nothing ... 'Define the byte array and then serialize the object to the byte array. Dim byteArray As Byte() = Nothing Dim SerializeSuccess As Boolean SerializeSuccess = MyRepository.XFRACAS.SerializeXMLObjectToByteArray(byteArray, xmlObject) 'Import the XML byte array into XFRACAS entity ID# 10. Dim ImportXMLSystemID As Integer ImportXMLSystemID = MyRepository.XFRACAS.ImportXfracasXml(10, XFRACASImportType.Incident, byteArray, "XMLFileTitle", "XMLFileDescription") 'Process the imported file. MyRepository.XFRACAS.ProcessXfracasImports()