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
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.