Partilhar via


ConfigurationAttribute.SetMetadata(String, Object) Método

Definição

Define metadados de atributo no sistema de configuração do IIS 7.

public:
 void SetMetadata(System::String ^ metadataType, System::Object ^ value);
public void SetMetadata (string metadataType, object value);
member this.SetMetadata : string * obj -> unit
Public Sub SetMetadata (metadataType As String, value As Object)

Parâmetros

metadataType
String

O nome dos metadados a serem definidos.

value
Object

O valor a ser atribuído aos metadados.

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 .

ServerManager manager = new ServerManager();
Configuration config = manager.GetApplicationHostConfiguration();
ConfigurationSection configSection =
    config.GetSection("system.web/anonymousIdentification");

ConfigurationAttributeCollection configAttributeCollection =
    configSection.Attributes;

ConfigurationAttribute attribute = configAttributeCollection[1];
// Use any of the following encryption providers.
// attribute.SetMetadata("encryptionProvider", "IISWASOnlyRsaProvider");
// attribute.SetMetadata("encryptionProvider", "AesProvider");
attribute.SetMetadata("encryptionProvider", "IISWASOnlyAesProvider");

// Commit the changes to applicationHost.config
manager.CommitChanges();

Aplica-se a

Confira também