XmlDictionaryReader.StartCanonicalization(Stream, Boolean, String[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method is not yet implemented.
public:
virtual void StartCanonicalization(System::IO::Stream ^ stream, bool includeComments, cli::array <System::String ^> ^ inclusivePrefixes);
public virtual void StartCanonicalization (System.IO.Stream stream, bool includeComments, string[] inclusivePrefixes);
public virtual void StartCanonicalization (System.IO.Stream stream, bool includeComments, string[]? inclusivePrefixes);
abstract member StartCanonicalization : System.IO.Stream * bool * string[] -> unit
override this.StartCanonicalization : System.IO.Stream * bool * string[] -> unit
Public Overridable Sub StartCanonicalization (stream As Stream, includeComments As Boolean, inclusivePrefixes As String())
Parameters
- stream
- Stream
The stream to read from.
- includeComments
- Boolean
Determines whether comments are included.
- inclusivePrefixes
- String[]
The prefixes to be included.
Exceptions
Always.
Remarks
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.