BodyWriter.WriteBodyContents(XmlDictionaryWriter) Metodo

Definizione

Scrive il contenuto del corpo del messaggio.

public:
 void WriteBodyContents(System::Xml::XmlDictionaryWriter ^ writer);
public void WriteBodyContents (System.Xml.XmlDictionaryWriter writer);
member this.WriteBodyContents : System.Xml.XmlDictionaryWriter -> unit
Public Sub WriteBodyContents (writer As XmlDictionaryWriter)

Parametri

writer
XmlDictionaryWriter

XmlDictionaryWriter utilizzato per scrivere il corpo del messaggio.

Eccezioni

writer è null.

Esempio

Nell'esempio seguente viene illustrato come chiamare il metodo WriteBodyContents(XmlDictionaryWriter).

string[] strings = {"Hello", "world"};
MyBodyWriter bw = new MyBodyWriter(strings);

StringBuilder strBuilder = new StringBuilder(10);
XmlWriter writer = XmlWriter.Create(strBuilder);
XmlDictionaryWriter dictionaryWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer);

bw.WriteBodyContents(dictionaryWriter);
dictionaryWriter.Flush();
Dim strings() As String = {"Hello", "world"}
Dim bw As New MyBodyWriter(strings)

Dim strBuilder As New StringBuilder(10)
Dim writer = XmlWriter.Create(strBuilder)
Dim dictionaryWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer)

bw.WriteBodyContents(dictionaryWriter)
dictionaryWriter.Flush()

Commenti

L'implementazione predefinita di WriteBodyContents(XmlDictionaryWriter) chiama OnWriteBodyContents(XmlDictionaryWriter), pertanto l'override di OnWriteBodyContents(XmlDictionaryWriter) fornisce il punto di estensione migliore.

Si applica a