EndpointAddress.WriteContentsTo Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zapisuje wszystkie węzły podrzędne węzła w określonym składniku zapisywania XML.
Przeciążenia
WriteContentsTo(AddressingVersion, XmlDictionaryWriter) |
Zapisuje wszystkie węzły podrzędne węzła w określonym składniku zapisywania słownika XML. |
WriteContentsTo(AddressingVersion, XmlWriter) |
Zapisuje wszystkie węzły podrzędne węzła w określonym składniku zapisywania XML. |
WriteContentsTo(AddressingVersion, XmlDictionaryWriter)
Zapisuje wszystkie węzły podrzędne węzła w określonym składniku zapisywania słownika XML.
public:
void WriteContentsTo(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlDictionaryWriter ^ writer);
public void WriteContentsTo (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlDictionaryWriter writer);
member this.WriteContentsTo : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlDictionaryWriter -> unit
Public Sub WriteContentsTo (addressingVersion As AddressingVersion, writer As XmlDictionaryWriter)
Parametry
- addressingVersion
- AddressingVersion
Bieżący AddressingVersion adres punktu końcowego.
- writer
- XmlDictionaryWriter
Adres XmlDictionaryWriter punktu końcowego, do którego jest zapisywany.
Wyjątki
writer
lub addressingVersion
to null
.
Przykłady
XmlWriter writer = XmlWriter.Create("addressdata.xml");
XmlDictionaryWriter dictWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer);
endpointAddress.WriteContentsTo(
AddressingVersion.WSAddressing10,
dictWriter);
dictWriter.Close();
Dotyczy
WriteContentsTo(AddressingVersion, XmlWriter)
Zapisuje wszystkie węzły podrzędne węzła w określonym składniku zapisywania XML.
public:
void WriteContentsTo(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlWriter ^ writer);
public void WriteContentsTo (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlWriter writer);
member this.WriteContentsTo : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlWriter -> unit
Public Sub WriteContentsTo (addressingVersion As AddressingVersion, writer As XmlWriter)
Parametry
- addressingVersion
- AddressingVersion
Bieżący AddressingVersion adres punktu końcowego.
Wyjątki
writer
lub addressingVersion
to null
.
Przykłady
XmlWriter writer = XmlWriter.Create("addressdata.xml");
endpointAddress.WriteContentsTo(
AddressingVersion.WSAddressing10,
writer);
writer.Close();