EndpointAddress.ReadFrom Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přečte adresu koncového bodu ze zadané čtečky XML.
Přetížení
ReadFrom(XmlDictionaryReader) |
Přečte adresu koncového bodu ze zadané čtečky slovníku XML. |
ReadFrom(AddressingVersion, XmlDictionaryReader) |
Přečte adresu koncového bodu pro zadanou verzi adresy ze zadané čtečky slovníku XML. |
ReadFrom(AddressingVersion, XmlReader) |
Přečte adresu koncového bodu pro zadanou verzi adresy ze zadané čtečky XML. |
ReadFrom(XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString) |
Přečte adresu koncového bodu se zadaným kvalifikovaným názvem ze zadané čtečky slovníku XML. |
ReadFrom(AddressingVersion, XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString) |
Přečte adresu koncového bodu pro zadanou verzi adresy se zadaným kvalifikovaným názvem ze zadané čtečky slovníku XML. |
ReadFrom(AddressingVersion, XmlReader, String, String) |
Přečte adresu koncového bodu pro zadanou verzi adresy se zadaným kvalifikovaným názvem ze zadané čtečky XML. |
ReadFrom(XmlDictionaryReader)
Přečte adresu koncového bodu ze zadané čtečky slovníku XML.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::Xml::XmlDictionaryReader ^ reader);
public static System.ServiceModel.EndpointAddress ReadFrom (System.Xml.XmlDictionaryReader reader);
static member ReadFrom : System.Xml.XmlDictionaryReader -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (reader As XmlDictionaryReader) As EndpointAddress
Parametry
- reader
- XmlDictionaryReader
Adresa XmlDictionaryReader koncového bodu se získá.
Návraty
Čtení EndpointAddress ze čtečky slovníku XML.
Příklady
Následující kód ukazuje, jak číst adresu koncového bodu ze čtečky slovníku XML.
XmlDictionaryReader reader = (XmlDictionaryReader) XmlDictionaryReader.Create("addressdata.xml");
EndpointAddress createdEA = EndpointAddress.ReadFrom(reader);
Platí pro
ReadFrom(AddressingVersion, XmlDictionaryReader)
Přečte adresu koncového bodu pro zadanou verzi adresy ze zadané čtečky slovníku XML.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlDictionaryReader ^ reader);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlDictionaryReader reader);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlDictionaryReader -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlDictionaryReader) As EndpointAddress
Parametry
- addressingVersion
- AddressingVersion
Adresa AddressingVersion aktuálního koncového bodu.
- reader
- XmlDictionaryReader
Adresa XmlDictionaryReader koncového bodu se získá.
Návraty
Čtení EndpointAddress ze čtečky slovníku XML.
Příklady
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
dictReader);
Platí pro
ReadFrom(AddressingVersion, XmlReader)
Přečte adresu koncového bodu pro zadanou verzi adresy ze zadané čtečky XML.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlReader ^ reader);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlReader reader);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlReader -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlReader) As EndpointAddress
Parametry
- addressingVersion
- AddressingVersion
Adresa AddressingVersion aktuálního koncového bodu.
Návraty
Čtení EndpointAddress ze čtečky XML
Příklady
Následující kód ukazuje, jak číst v adrese koncového bodu ze čtečky slovníku XML.
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
dictReader,
"EndpointReference",
"http://www.w3.org/2005/08/addressing");
Platí pro
ReadFrom(XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString)
Přečte adresu koncového bodu se zadaným kvalifikovaným názvem ze zadané čtečky slovníku XML.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::Xml::XmlDictionaryReader ^ reader, System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ ns);
public static System.ServiceModel.EndpointAddress ReadFrom (System.Xml.XmlDictionaryReader reader, System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString ns);
static member ReadFrom : System.Xml.XmlDictionaryReader * System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (reader As XmlDictionaryReader, localName As XmlDictionaryString, ns As XmlDictionaryString) As EndpointAddress
Parametry
- reader
- XmlDictionaryReader
Adresa XmlDictionaryReader koncového bodu se získá.
- localName
- XmlDictionaryString
Obsahuje XmlDictionaryString místní název uzlu XML, který bude obsahovat adresu koncového bodu.
Obor XmlDictionaryString názvů pro uzel XML, který bude obsahovat adresu koncového bodu.
Návraty
S EndpointAddress kvalifikovaným názvem přečteným ze čtečky slovníku XML.
Příklady
Následující kód ukazuje, jak číst v adrese koncového bodu ze čtečky slovníku XML.
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
XmlDictionaryString xdLocalName = new XmlDictionaryString(XmlDictionary.Empty, "EndpointReference",0);
XmlDictionaryString xdNamespace = new XmlDictionaryString(XmlDictionary.Empty, "http://www.w3.org/2005/08/addressing", 0);
EndpointAddress createdEA = EndpointAddress.ReadFrom(dictReader, xdLocalName, xdNamespace);
Platí pro
ReadFrom(AddressingVersion, XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString)
Přečte adresu koncového bodu pro zadanou verzi adresy se zadaným kvalifikovaným názvem ze zadané čtečky slovníku XML.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlDictionaryReader ^ reader, System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ ns);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlDictionaryReader reader, System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString ns);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlDictionaryReader * System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlDictionaryReader, localName As XmlDictionaryString, ns As XmlDictionaryString) As EndpointAddress
Parametry
- addressingVersion
- AddressingVersion
Adresa AddressingVersion aktuálního koncového bodu.
- reader
- XmlDictionaryReader
Adresa XmlDictionaryReader koncového bodu se získá.
- localName
- XmlDictionaryString
Obsahuje místní název uzlu XML, který bude obsahovat adresu koncového bodu.
Obsahuje obor názvů uzlu XML, který bude obsahovat adresu koncového bodu.
Návraty
S EndpointAddress kvalifikovaným názvem přečteným ze čtečky XML.
Příklady
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader xReader = XmlDictionaryReader.CreateDictionaryReader(reader);
// Create an XmlDictionary and add values to it.
XmlDictionary d = new XmlDictionary();
XmlDictionaryString xdLocalName = new XmlDictionaryString(XmlDictionary.Empty, "EndpointReference",0);
XmlDictionaryString xdNamespace = new XmlDictionaryString(XmlDictionary.Empty, "http://www.w3.org/2005/08/addressing", 0);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
xReader,
xdLocalName,
xdNamespace
);
Platí pro
ReadFrom(AddressingVersion, XmlReader, String, String)
Přečte adresu koncového bodu pro zadanou verzi adresy se zadaným kvalifikovaným názvem ze zadané čtečky XML.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlReader ^ reader, System::String ^ localName, System::String ^ ns);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlReader reader, string localName, string ns);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlReader * string * string -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlReader, localName As String, ns As String) As EndpointAddress
Parametry
- addressingVersion
- AddressingVersion
Adresa AddressingVersion aktuálního koncového bodu.
- localName
- String
Obsahuje místní název uzlu XML, který bude obsahovat adresu koncového bodu.
- ns
- String
Obsahuje obor názvů uzlu XML, který bude obsahovat adresu koncového bodu.
Návraty
S EndpointAddress kvalifikovaným názvem přečteným ze čtečky XML.
Příklady
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader xReader = XmlDictionaryReader.CreateDictionaryReader(reader);
// Create an XmlDictionary and add values to it.
XmlDictionary d = new XmlDictionary();
XmlDictionaryString xdLocalName = new XmlDictionaryString(XmlDictionary.Empty, "EndpointReference",0);
XmlDictionaryString xdNamespace = new XmlDictionaryString(XmlDictionary.Empty, "http://www.w3.org/2005/08/addressing", 0);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
xReader,
xdLocalName,
xdNamespace
);