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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.