XmlTextWriter.WriteRaw Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Grava a marcação bruta manualmente.
Sobrecargas
WriteRaw(Char[], Int32, Int32) |
Grava a marcação bruta manualmente de um buffer de caracteres. |
WriteRaw(String) |
Grava a marcação bruta manualmente de uma cadeia de caracteres. |
Comentários
Observação
A partir do .NET Framework 2.0, recomendamos que você crie XmlWriter instâncias usando o XmlWriter.Create método e a XmlWriterSettings classe para aproveitar a nova funcionalidade.
WriteRaw(Char[], Int32, Int32)
Grava a marcação bruta manualmente de um buffer de caracteres.
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.
- index
- Int32
A posição no buffer que indica o início do texto a ser escrito.
- count
- Int32
O número de caracteres a serem gravados.
Exceções
buffer
é null
.
index
ou count
é menor que zero.
- ou -
O tamanho do buffer menos index
é menor que count
.
Comentários
Observação
A partir do .NET Framework 2.0, recomendamos que você crie XmlWriter instâncias usando o XmlWriter.Create método e a XmlWriterSettings classe para aproveitar a nova funcionalidade.
Esse método não escapa de caracteres especiais.
Importante
Os XmlTextWriter dados não são validados que são passados para o WriteRaw método. Você não deve passar dados arbitrários para esse método.
Aplica-se a
WriteRaw(String)
Grava a marcação bruta manualmente de uma cadeia de caracteres.
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.
Exemplos
O exemplo a seguir grava uma cadeia de caracteres usando o WriteRaw
método.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
// Create a writer that outputs to the console.
XmlTextWriter^ writer = gcnew XmlTextWriter( Console::Out );
writer->Formatting = Formatting::Indented;
// Write the root element.
writer->WriteStartElement( "Items" );
// Write a string using WriteRaw. Note that the special
// characters are not escaped.
writer->WriteStartElement( "Item" );
writer->WriteString( "Write unescaped text: " );
writer->WriteRaw( "this & that" );
writer->WriteEndElement();
// Write the same string using WriteString. Note that the
// special characters are escaped.
writer->WriteStartElement( "Item" );
writer->WriteString( "Write the same string using WriteString: " );
writer->WriteString( "this & that" );
writer->WriteEndElement();
// Write the close tag for the root element.
writer->WriteEndElement();
// Write the XML to file and close the writer.
writer->Close();
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
// Create a writer that outputs to the console.
XmlTextWriter writer = new XmlTextWriter (Console.Out);
writer.Formatting = Formatting.Indented;
// Write the root element.
writer.WriteStartElement("Items");
// Write a string using WriteRaw. Note that the special
// characters are not escaped.
writer.WriteStartElement("Item");
writer.WriteString("Write unescaped text: ");
writer.WriteRaw("this & that");
writer.WriteEndElement();
// Write the same string using WriteString. Note that the
// special characters are escaped.
writer.WriteStartElement("Item");
writer.WriteString("Write the same string using WriteString: ");
writer.WriteString("this & that");
writer.WriteEndElement();
// Write the close tag for the root element.
writer.WriteEndElement();
// Write the XML to file and close the writer.
writer.Close();
}
}
Option Strict
Option Explicit
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
' Create a writer that outputs to the console.
Dim writer As New XmlTextWriter(Console.Out)
writer.Formatting = Formatting.Indented
' Write the root element.
writer.WriteStartElement("Items")
' Write a string using WriteRaw. Note that the special
' characters are not escaped.
writer.WriteStartElement("Item")
writer.WriteString("Write unescaped text: ")
writer.WriteRaw("this & that")
writer.WriteEndElement()
' Write the same string using WriteString. Note that the
' special characters are escaped.
writer.WriteStartElement("Item")
writer.WriteString("Write the same string using WriteString: ")
writer.WriteString("this & that")
writer.WriteEndElement()
' Write the close tag for the root element.
writer.WriteEndElement()
' Write the XML to file and close the writer.
writer.Close()
End Sub
End Class
Comentários
Observação
A partir do .NET Framework 2.0, recomendamos que você crie XmlWriter instâncias usando o XmlWriter.Create método e a XmlWriterSettings classe para aproveitar a nova funcionalidade.
Esse método não escapa de caracteres especiais.
Importante
Os XmlTextWriter dados não são validados que são passados para o WriteRaw método. Você não deve passar dados arbitrários para esse método.