Partilhar via


ConfigurationAttribute.GetMetadata(String) Método

Definição

Obtém metadados de atributo do sistema de configuração do IIS 7.

public:
 System::Object ^ GetMetadata(System::String ^ metadataType);
public object GetMetadata (string metadataType);
member this.GetMetadata : string -> obj
Public Function GetMetadata (metadataType As String) As Object

Parâmetros

metadataType
String

O nome dos metadados a serem retornados.

Retornos

Os metadados de atributo que correspondem ao solicitado metadataType do sistema de configuração do IIS 7.

Exemplos

O exemplo a seguir obtém os metadados de cada um dos atributos de configuração. Este exemplo de código faz parte de um exemplo maior fornecido para a ConfigurationAttribute classe .

// Get the attributes again, after the commit changes.
Configuration config2 = manager.GetApplicationHostConfiguration();
configSection = config2.GetSection("system.web/anonymousIdentification");
configAttributeCollection = configSection.Attributes;
Console.WriteLine("There are " +
    configAttributeCollection.Count.ToString() +
    " Configuration attributes.");
attribute = configAttributeCollection[1];
Console.WriteLine("metadata: " +
    attribute.GetMetadata("encryptionProvider"));
// Display each configuration attribute with properties and metadata.
foreach (ConfigurationAttribute configAttribute in configAttributeCollection)
{
    Console.WriteLine("\t{0}\t{1}\t{2}\t{3}",
         configAttribute.Name,
         configAttribute.Value,
         configAttribute.IsProtected,
         configAttribute.GetMetadata("encryptionProvider"));
}

Aplica-se a

Confira também