SectionInformation.UnprotectSection メソッド
アセンブリ: System.Configuration (system.configuration.dll 内)



UnprotectSection メソッドを使用する方法の例を次に示します。
Public Shared Sub UnProtectSection() ' 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) ' 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. Dim sectionXml As String = _ section.SectionInformation.GetRawXml() Console.WriteLine("Decrypted section:") Console.WriteLine(sectionXml) End Sub 'UnProtectSection
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); }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- SectionInformation.UnprotectSection メソッドのページへのリンク