This documentation is archived and is not being maintained.
MetadataExchangeClientMode Enumeration
Visual Studio 2010
Specifies the exchange mode used to obtain metadata.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Use the MetadataExchangeClientMode with the System.ServiceModel.Description::MetadataExchangeClient to specify whether metadata is downloaded using an HTTP GET or WS-Transfer Get request.
The following code example shows the use of MetadataExchangeClient to specify a download binding, resolve any contained references to metadata, and download the metadata.
// Get metadata documents. Console.WriteLine("URI of the metadata documents retreived:"); MetadataExchangeClient metaTransfer = new MetadataExchangeClient(httpGetMetaAddress.Uri, MetadataExchangeClientMode.HttpGet); metaTransfer.ResolveMetadataReferences = true; MetadataSet otherDocs = metaTransfer.GetMetadata(); foreach (MetadataSection doc in otherDocs.MetadataSections) Console.WriteLine(doc.Dialect + " : " + doc.Identifier);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: