MetadataSection.Identifier Property

Definition

Gets or sets an identifier for the metadata.

public:
 property System::String ^ Identifier { System::String ^ get(); void set(System::String ^ value); };
public string Identifier { get; set; }
member this.Identifier : string with get, set
Public Property Identifier As String

Property Value

The identifier for the metadata. The default is null.

Examples

The following code example shows how to retrieve the MetadataSection objects from a System.ServiceModel.Description.MetadataResolver and iterate through them to write the Identifier and Dialect properties to the console.

// 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);

Remarks

The identifier for the metadata in this MetadataSection. The value depends on the type of metadata.

Applies to