XmlDictionaryReader.StartCanonicalization Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
This method is not supported in this class. It may be implemented in a derived class.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
'Declaration Public Overridable Sub StartCanonicalization ( _ stream As Stream, _ includeComments As Boolean, _ inclusivePrefixes As String() _ )
Parameters
- stream
- Type: System.IO.Stream
The stream to read from.
- includeComments
- Type: System.Boolean
Determines whether comments are included.
- inclusivePrefixes
- Type:
System.String
()
The prefixes to be included.
| Exception | Condition |
|---|---|
| NotSupportedException | Always. |
Start reading the canonical octets of the XML being read to this reader from the supplied stream until the matching EndCanonicalization call is made. The content read from the main reader stream is unaffected by this call. includeComments defines whether comments are to be included in the canonical input and inclusivePrefixes provides the list of prefixes to be treated as inclusive prefixes with the exclusive canonicalization algorithm.