SectionInformation.ProtectSection(String) Método

Definição

Marca uma secção de configuração para proteção.

public:
 void ProtectSection(System::String ^ protectionProvider);
public void ProtectSection(string protectionProvider);
member this.ProtectSection : string -> unit
Public Sub ProtectSection (protectionProvider As String)

Parâmetros

protectionProvider
String

O nome do fornecedor de proteção a utilizar.

Exceções

A propriedade AllowLocation está definida como false.

-ou-

A secção alvo já é uma secção de dados protegidos.

Exemplos

O exemplo seguinte mostra como usar o ProtectSection método.

static public void ProtectSection()
{

    // Get the current configuration file.
    System.Configuration.Configuration config =
            ConfigurationManager.OpenExeConfiguration(
            ConfigurationUserLevel.None);

    // Get the section.
    UrlsSection section =
        (UrlsSection)config.GetSection("MyUrls");

    // Protect (encrypt)the section.
    section.SectionInformation.ProtectSection(
        "RsaProtectedConfigurationProvider");

    // Save the encrypted section.
    section.SectionInformation.ForceSave = true;

    config.Save(ConfigurationSaveMode.Full);

    // Display decrypted configuration 
    // section. Note, the system
    // uses the Rsa provider to decrypt
    // the section transparently.
    string sectionXml =
        section.SectionInformation.GetRawXml();

    Console.WriteLine("Decrypted section:");
    Console.WriteLine(sectionXml);
}
Public Shared Sub ProtectSection() 
    
    ' Get the current configuration file.
    Dim config _
    As System.Configuration.Configuration = _
    ConfigurationManager.OpenExeConfiguration( _
    ConfigurationUserLevel.None)

    
    ' Get the section.
    Dim section As UrlsSection = _
    CType(config.GetSection("MyUrls"), UrlsSection)
    
    
    ' Protect (encrypt)the section.
    section.SectionInformation.ProtectSection( _
    "RsaProtectedConfigurationProvider")
    
    ' Save the encrypted section.
    section.SectionInformation.ForceSave = True
    
    config.Save(ConfigurationSaveMode.Full)
    
    ' Display decrypted configuration 
    ' section. Note, the system
    ' uses the Rsa provider to decrypt
    ' the section transparently.
    Dim sectionXml As String = _
    section.SectionInformation.GetRawXml()
    
    Console.WriteLine("Decrypted section:")
    Console.WriteLine(sectionXml)

End Sub

Observações

O ProtectSection método marca a secção para encriptação para que seja escrito em forma encriptada no disco.

Os seguintes prestadores de proteção estão incluídos por defeito:

DpapiProtectedConfigurationProvider

RsaProtectedConfigurationProvider

Note

Se chamar o ProtectSection método com um null parâmetro ou uma cadeia vazia, a RsaProtectedConfigurationProvider classe é usada como fornecedora de proteção.

Para mais informações sobre secções de configuração protegida, consulte Encriptação de Informação de Configuração Usando Configuração Protegida.

Aplica-se a

Ver também