共用方式為


MetadataSection.Identifier 屬性

定義

取得或設定中繼資料的識別碼。

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

屬性值

中繼資料的識別碼。 預設為 null

範例

下列程式碼範例會示範如何從 MetadataSection 擷取 System.ServiceModel.Description.MetadataResolver 物件,並逐一查看這些物件以將 IdentifierDialect 屬性寫入至主控台。

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

備註

這個 MetadataSection 中的中繼資料識別碼。 值要視中繼資料的型別而定。

適用於