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: