DelegatingXmlDictionaryWriter.WriteRaw Método

Definição

Sobrecargas

WriteRaw(String)

Grava a marcação bruta manualmente de uma cadeia de caracteres.Writes raw markup manually from a string.

WriteRaw(Char[], Int32, Int32)

Quando substituído em uma classe derivada, grava a marcação bruta manualmente de um buffer de caracteres.When overridden in a derived class, writes raw markup manually from a character buffer.

WriteRaw(String)

Grava a marcação bruta manualmente de uma cadeia de caracteres.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)

Parâmetros

data
String

A cadeia de caracteres que contém o texto a ser gravado.String containing the text to write.

Aplica-se a

WriteRaw(Char[], Int32, Int32)

Quando substituído em uma classe derivada, grava a marcação bruta manualmente de um buffer de caracteres.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)

Parâmetros

buffer
Char[]

Uma matriz de caracteres que contém o texto a ser gravado.Character array containing the text to write.

index
Int32

A posição no buffer que indica o início do texto a ser escrito.The position within the buffer indicating the start of the text to write.

count
Int32

O número de caracteres a serem gravados.The number of characters to write.

Aplica-se a