xml.Serializer methods

Methods for the xml.Serializer class.

Table 1. Class methods
Name Description
xml.Serializer.CreateXmlSchemas(
   var RECORD,
   schemas RECORD )
Creates XML schemas corresponding to the given variable, and fills a dynamic array with xml.DomDocument objects each representing a XML schema.
xml.Serializer.DomToStax(
   node xml.DomNode,
   stax xml.StaxWriter )
Serializes a XML DomNode object to a StaxWriter object.
xml.Serializer.DomToVariable(
   node xml.DomNode,
   var RECORD )
Serializes a XML element node into a BDL variable using a DomNode object.
xml.Serializer.GetOption(
   str STRING )
  RETURNS STRING
Gets a global option value from the serializer engine.
xml.Serializer.OptimizedDomToVariable(
   node xml.DomNode,
   var RECORD,
   xopTable RECORD )
Serializes a XML element node into a BDL variable using a DomNode object.
xml.Serializer.OptimizedSoapSection5ToVariable(
   node xml.DomNode,
   var RECORD,
   xopTable RECORD)
Serializes an XML element node into a BDL variable in Soap Section 5 encoding.
xml.Serializer.OptimizedStaxToVariable(
   stax xml.StaxReader,
   var RECORD,
   xopTable RECORD )
Serializes an XML element node into a BDL variable using a StaxReader object.
xml.Serializer.OptimizedVariableToDom(
   var fgl-type,
   node xml.DomNode,
   xopTable RECORD )
Serializes a BDL variable into a XML element node using a DomNode object.
xml.Serializer.OptimizedVariableToSoapSection5(
   var ,
   node xml.DomNode,
   xopTable RECORD)
Serializes a BDL variable into a XML element node in Soap Section 5 encoding.
xml.Serializer.OptimizedVariableToStax(
   var RECORD,
   stax xml.StaxWriter,
   xopTable RECORD )
Serializes a BDL variable into a XML element node using a StaxWriter object.
xml.Serializer.SetOption(
   optionName STRING,
   optionValue STRING )
Sets a global option value for the serializer engine
xml.Serializer.SoapSection5ToVariable(
   node xml.DomNode,
   var RECORD )
Serializes an XML element node into a BDL variable in Soap Section 5 encoding.
xml.Serializer.StaxToVariable(
   stax xml.StaxReader,
   var RECORD )
Serializes an XML element node into a BDL variable using a StaxReader object.
xml.Serializer.StaxToDom(
   stax xml.StaxReader,
   node xml.DomNode )
Serializes an XML element node into a DomNode object using a StaxReader object.
xml.Serializer.VariableToDom(
   var RECORD,
   node xml.DomNode )
Serializes a BDL variable into a XML element node using a DomNode object.
xml.Serializer.VariableToSoapSection5(
   var fgl-type,
   node xml.DomNode )
Serializes a BDL variable into a XML element node in Soap Section 5 encoding.
xml.Serializer.VariableToStax(
   var RECORD,
   stax xml.StaxWriter )
Serializes a BDL variable into a XML element node using a StaxWriter object.