XMLCanonicalizingWriter.SetString
Syntax:
Parameters:
<CanonicalXMLType> (optional)
Type of algorithm used for conversion in the canonical form.
Default value: XMLCanonicalization.
<InclusionPrefixes> (optional)
A list of namespace prefixes to be included in the following format: Prefix1 Prefix2.... Use inclusion prefixes in the algorithm of exclusive canonical XML (see w3c Standard, Exclusive XML Canonicalization).
Description:
Availability:
Example:
XMLWriter = New XMLCanonicalizingWriter; XMLWriter.SetString(); // Writing the XML document ... StrXML = XMLWriter.Close(); |