Bearbeiten

EndpointAddressBuilder.GetReaderAtMetadata Method

Definition

Returns the reader that contains the metadata associated with the endpoint address.

public:
 System::Xml::XmlDictionaryReader ^ GetReaderAtMetadata();
public System.Xml.XmlDictionaryReader GetReaderAtMetadata ();
member this.GetReaderAtMetadata : unit -> System.Xml.XmlDictionaryReader
Public Function GetReaderAtMetadata () As XmlDictionaryReader

Returns

The XmlDictionaryReader that reads the metadata associated the endpoint address if there is some; otherwise, null.

Examples

sr = new StringReader(@"<myMetadata xmlns=""myMetaNs"" />");
XmlDictionaryReader xdrMetaData = eab.GetReaderAtMetadata();
sr = New StringReader("<myMetadata xmlns=""myMetaNs"" />")
Dim xdrMetaData As XmlDictionaryReader = eab.GetReaderAtMetadata()

Applies to