Indicates the start of Canonicalization. Any write opertation following this will canonicalize the data and will wirte it to the given stream.
Namespace: Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As DelegatingXmlDictionaryWriter
Dim stream As Stream
Dim includeComments As Boolean
Dim inclusivePrefixes As String()

instance.StartCanonicalization(stream, includeComments, inclusivePrefixes)

Syntax

Visual Basic
Public Overrides Sub StartCanonicalization ( _
		stream As Stream, _
		includeComments As Boolean, _
		inclusivePrefixes As String() _
)
C#
public override void StartCanonicalization (
		Stream stream,
		bool includeComments,
		string[] inclusivePrefixes
)
C++
public:
virtual void StartCanonicalization (
		Stream^ stream, 
		bool includeComments, 
		array<String^>^ inclusivePrefixes
) override
J#
public void StartCanonicalization (
		Stream stream, 
		boolean includeComments, 
		String[] inclusivePrefixes
)
JScript
public override function StartCanonicalization (
		stream : Stream, 
		includeComments : boolean, 
		inclusivePrefixes : String[]
)

Parameters

stream

Stream to which the canonical stream should be written.

includeComments

The value indicates if comments written should be canonicalized as well.

inclusivePrefixes

Set of prefixes that needs to be included into the canonical stream. The prefixes are defined at the first element that is written to the canonical stream.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also