XdmWriter.WriteRaw Method (char[], int, int)XdmWriter.WriteRaw Method (Char(), Integer, Integer)XdmWriter::WriteRaw Method (array<char>^, int, int)

Writes raw markup manually from a character buffer.

Syntax

Public Overrides Sub WriteRaw( _
    buffer As Char[], _
    index As Integer, _
    count As Integer _
)
public override void WriteRaw(
    char[] buffer,
    int index,
    int count
)
public:
virtual void WriteRaw(
    array<char> buffer, 
    int index, 
    int count
) override
 

Parameters

buffer

Type: System.Char[]System.Char()array<System::Char>^

Character array containing the text to write.

index

Type: System.Int32System.Int32System::Int32

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

count

Type: System.Int32System.Int32System::Int32

The number of characters to write.

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullException buffer is null a null reference (Nothing in Visual Basic) nullptr.
ArgumentOutOfRangeExceptionArgumentOutOfRangeExceptionArgumentOutOfRangeException index or count is less than zero. The buffer length minus index is less than count.