xml.Serializer.CreateXmlSchemas(
var fgl-type,
ar DYNAMIC ARRAY OF xml.DomDocument )
|
Creates XML schemas corresponding
to the given variable var, and fills the dynamic
array ar with xml.DomDocument objects each representing
an XML schema. |
xml.Serializer.DomToStax(
node xml.DomNode,
stax xml.StaxWriter )
|
Serializes an XML node object to
a StaxWriter object. |
xml.Serializer.DomToVariable(
node xml.DomNode,
var fgl-type )
|
Serializes an XML element node into
a BDL variable using a DomNode object. |
xml.Serializer.GetOption(
flag STRING )
RETURNING value STRING
|
Gets a global option value from the
serializer engine. |
xml.Serializer.SetOption(
flag STRING,
value STRING )
|
Sets a global option value for the
serializer engine |
xml.Serializer.SoapSection5ToVariable(
node xml.DomNode,
var fgl-type )
|
Serializes an XML element node into
a BDL variable in Soap Section 5 encoding. |
xml.Serializer.StaxToVariable(
stax xml.StaxReader,
var fgl-type )
|
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 fgl-type,
node xml.DomNode )
|
Serializes a BDL variable into an
XML element node using a DomNode object. |
xml.Serializer.VariableToSoapSection5(
var fgl-type,
node xml.DomNode )
|
Serializes a BDL variable into an
XML element node in Soap Section 5 encoding. |
xml.Serializer.VariableToStax(
var fgl-type,
stax xml.StaxWriter )
|
Serializes a BDL variable into an
XML element node using a StaxWriter object. |