Windows apps
Collapse the table of content
Expand the table of content
Information
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^)

 

Reads an endpoint address from a specified XML dictionary reader.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
static EndpointAddress^ ReadFrom(
	XmlDictionaryReader^ reader
)

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
Return to top
Show:
© 2017 Microsoft