Condividi tramite


MetadataSection.Dialect Proprietà

Definizione

Ottiene o imposta un valore che indica il tipo di metadati.

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

Valore della proprietà

String

Sottolinguaggio 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

Il sottolinguaggio indica il tipo di metadati in MetadataSection. Le stringhe del sottolinguaggio con modelli a oggetti supportati sono:

Si applica a