The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
EndpointAddress::ReadFrom Method (XmlDictionaryReader^)
.NET Framework (current version)
Reads an endpoint address from a specified XML dictionary reader.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Parameters
- reader
-
Type:
System.Xml::XmlDictionaryReader^
The XmlDictionaryReader from which the endpoint address is obtained.
Return Value
Type: System.ServiceModel::EndpointAddress^The EndpointAddress read from the XML dictionary reader.
The following code shows how to read an endpoint address from a XML dictionary reader.
XmlDictionaryReader reader = (XmlDictionaryReader) XmlDictionaryReader.Create("addressdata.xml");
EndpointAddress createdEA = EndpointAddress.ReadFrom(reader);
.NET Framework
Available since 3.0
Available since 3.0
Show: