SectionInformation.UnprotectSection Método

Definición

Quita el cifrado de configuración protegida de la sección de configuración asociada.

C#
public void UnprotectSection();

Ejemplos

En el ejemplo siguiente se muestra cómo usar este método.

C#
static public void UnProtectSection()
{

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

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

    // Unprotect (decrypt)the section.
    section.SectionInformation.UnprotectSection();

    // Force the section information to be written to
    // the configuration file.
    section.SectionInformation.ForceDeclaration(true);

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

    config.Save(ConfigurationSaveMode.Full);

    // Display the decrypted configuration 
    // section. 
    string sectionXml =
        section.SectionInformation.GetRawXml();

    Console.WriteLine("Decrypted section:");
    Console.WriteLine(sectionXml);
}

Comentarios

Para obtener más información sobre las secciones de configuración protegida, consulte Cifrado de información de configuración mediante la configuración protegida.

Se aplica a

Producto Versiones
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

Consulte también