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 (AddressingVersion^, XmlDictionaryReader^)

 

Reads an endpoint address for a specified address version from a specified XML dictionary reader.

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

public:
static EndpointAddress^ ReadFrom(
	AddressingVersion^ addressingVersion,
	XmlDictionaryReader^ reader
)

Parameters

addressingVersion
Type: System.ServiceModel.Channels::AddressingVersion^

The AddressingVersion of the current endpoint address.

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.

XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
EndpointAddress createdEA = EndpointAddress.ReadFrom
			    (AddressingVersion.WSAddressing10,
			     dictReader);

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft