Method WriteChars
- Namespace
- Alternet.FormDesigner.Wpf.XamlDom
- Assembly
- Alternet.FormDesigner.Wpf.v10.dll
WriteChars(char[], int, int)
When overridden in a derived class, writes text one buffer at a time.
public override void WriteChars(char[] buffer, int index, int count)
Parameters
bufferchar[]Character array containing the text to write.
indexintThe position in the buffer indicating the start of the text to write.
countintThe number of characters to write.
Exceptions
- ArgumentNullException
bufferis null.- ArgumentOutOfRangeException
indexorcountis less than zero.-or-The buffer length minusindexis less thancount; the call results in surrogate pair characters being split or an invalid surrogate pair being written.- ArgumentException
The
bufferparameter value is not valid.- InvalidOperationException
An XmlWriter method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message “An asynchronous operation is already in progress.”