XmlReader.ReadOuterXml Metodo

Definizione

Quando ne viene eseguito l'override in una classe derivata, legge il contenuto, incluso il markup, che rappresenta questo nodo e tutti i relativi nodi figlio.

public:
 virtual System::String ^ ReadOuterXml();
public virtual string ReadOuterXml ();
abstract member ReadOuterXml : unit -> string
override this.ReadOuterXml : unit -> string
Public Overridable Function ReadOuterXml () As String

Restituisce

Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota.

Eccezioni

L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML.

È stato chiamato un metodo della classe XmlReader prima del completamento di un'operazione asincrona precedente. In questo caso, viene generata l'eccezione InvalidOperationException con il messaggio "È già in corso un'operazione asincrona".

Esempio

Nell'esempio seguente vengono confrontati i ReadInnerXml metodi e ReadOuterXml .

// Load the file and ignore all white space.
XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreWhitespace = true;
using (XmlReader reader = XmlReader.Create("2books.xml")) {

  // Moves the reader to the root element.
  reader.MoveToContent();

  // Moves to book node.
  reader.Read();

  // Note that ReadInnerXml only returns the markup of the node's children
  // so the book's attributes are not returned.
  Console.WriteLine("Read the first book using ReadInnerXml...");
  Console.WriteLine(reader.ReadInnerXml());

  // ReadOuterXml returns the markup for the current node and its children
  // so the book's attributes are also returned.
  Console.WriteLine("Read the second book using ReadOuterXml...");
  Console.WriteLine(reader.ReadOuterXml());
}
' Load the file and ignore all white space.
Dim settings As New XmlReaderSettings()
settings.IgnoreWhitespace = True
Using reader As XmlReader = XmlReader.Create("2books.xml")

  ' Moves the reader to the root element.
  reader.MoveToContent()
                
  ' Moves to book node.
  reader.Read()
                
  ' Note that ReadInnerXml only returns the markup of the node's children
  ' so the book's attributes are not returned.
  Console.WriteLine("Read the first book using ReadInnerXml...")
  Console.WriteLine(reader.ReadInnerXml())
                
  ' ReadOuterXml returns the markup for the current node and its children
  ' so the book's attributes are also returned.
  Console.WriteLine("Read the second book using ReadOuterXml...")
  Console.WriteLine(reader.ReadOuterXml())

End Using

Nell'esempio viene 2books.xml usato il file come input.

<!--sample XML fragment-->
<bookstore>
  <book genre='novel' ISBN='10-861003-324'>
    <title>The Handmaid's Tale</title>
    <price>19.95</price>
  </book>
  <book genre='novel' ISBN='1-861001-57-5'>
    <title>Pride And Prejudice</title>
    <price>24.95</price>
  </book>
</bookstore>

Commenti

Questo metodo è simile a ReadInnerXml tranne che restituisce anche i tag di inizio e fine.

Questo metodo gestisce i nodi di elemento e attributo nel modo seguente:

Tipo di nodo Posizione prima della chiamata Frammento XML Valore restituito Posizione dopo la chiamata
Element In corrispondenza del tag di inizio item1. <item1>text1</item1><item2 text2<>/item2> <item1 text1></item1> In corrispondenza del tag di inizio item2.
Attribute In corrispondenza del nodo Attribute attr1. <item attr1="val1" attr2="val2">text</item> attr1="val1" Rimane in corrispondenza del nodo Attribute attr1.

Se il lettore è posizionato in corrispondenza di un nodo foglia, la chiamata al metodo ReadOuterXml equivarrà alla chiamata al metodo Read. Il metodo restituisce String.Empty (ad eccezione dei nodi dell'attributo, nel qual caso viene restituito il markup dell'attributo).

Questo metodo verifica la presenza di XML ben formato. Se ReadOuterXml viene chiamato da , XmlValidatingReaderquesto metodo convalida anche il contenuto restituito

Come implementato nelle XmlNodeReaderXmlTextReader classi , e XmlValidatingReader il ReadOuterXml metodo è compatibile con lo spazio dei nomi. Dato il testo <A xmlns:S="urn:1"><S:B>hello</S:B></A>XML seguente, se il lettore è posizionato sul S:B tag iniziale, ReadOuterXml restituisce <S:B xmlns:S="urn:1">hello<S:B/>.

Per la versione asincrona di questo metodo, vedere ReadOuterXmlAsync.

Si applica a