MetadataSection.Identifier Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un identificatore per i metadati.
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
Valore della proprietà
Identificatore dei metadati. Il valore predefinito è null
.
Esempio
Nell'esempio di codice seguente viene illustrato come richiamare gli oggetti MetadataSection da un oggetto System.ServiceModel.Description.MetadataResolver e come scorrerli per scrivere le proprietà Identifier e Dialect nella 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);
Commenti
Identificatore dei metadati in MetadataSection. Il valore dipende dal tipo di metadati.