When overridden in a derived class, writes text one buffer at a time.
Namespace: Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As DelegatingXmlDictionaryWriter
Dim buffer As Char()
Dim index As Integer
Dim count As Integer

instance.WriteChars(buffer, index, count)

Syntax

Visual Basic
Public Overrides Sub WriteChars ( _
		buffer As Char(), _
		index As Integer, _
		count As Integer _
)
C#
public override void WriteChars (
		char[] buffer,
		int index,
		int count
)
C++
public:
virtual void WriteChars (
		array<wchar_t>^ buffer, 
		int index, 
		int count
) override
J#
public void WriteChars (
		char[] buffer, 
		int index, 
		int count
)
JScript
public override function WriteChars (
		buffer : char[], 
		index : int, 
		count : int
)

Parameters

buffer

Character array containing the text to write.

index

The position in the buffer indicating the start of the text to write.

count

The number of characters to write.

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