DelegatingXmlDictionaryWriter.WriteRaw Method

Definition

Overloads

WriteRaw(String)

Writes raw markup manually from a string.

WriteRaw(Char[], Int32, Int32)

When overridden in a derived class, writes raw markup manually from a character buffer.

WriteRaw(String)

Writes raw markup manually from a string.

public:
 override void WriteRaw(System::String ^ data);
public override void WriteRaw (string data);
override this.WriteRaw : string -> unit
Public Overrides Sub WriteRaw (data As String)

Parameters

data
String

String containing the text to write.

Applies to

WriteRaw(Char[], Int32, Int32)

When overridden in a derived class, writes raw markup manually from a character buffer.

public:
 override void WriteRaw(cli::array <char> ^ buffer, int index, int count);
public override void WriteRaw (char[] buffer, int index, int count);
override this.WriteRaw : char[] * int * int -> unit
Public Overrides Sub WriteRaw (buffer As Char(), index As Integer, count As Integer)

Parameters

buffer
Char[]

Character array containing the text to write.

index
Int32

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

count
Int32

The number of characters to write.

Applies to