EndpointAddressBuilder.GetReaderAtMetadata Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.