MetadataSection.Identifier 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定中繼資料的識別碼。
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 物件,並逐一查看這些物件以將 Identifier 和 Dialect 屬性寫入至主控台。
// 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 中的中繼資料識別碼。 值要視中繼資料的型別而定。