SectionInformation.ProtectionProvider Property
.NET Framework 4
Gets the protected configuration provider for the associated configuration section.
Assembly: System.Configuration (in System.Configuration.dll)
Property Value
Type: System.Configuration.ProtectedConfigurationProviderThe protected configuration provider for this ConfigurationSection object.
For unprotected sections, the ProtectionProvider property is null.
For more information about protected configuration sections, see Encrypting Configuration Information Using Protected Configuration.
The following example shows how to get the ProtectSection value of a ConfigurationSection object.
static public void GetProtectionProvider() { SectionInformation sInfo = GetSectionInformation(); ProtectedConfigurationProvider pp = sInfo.ProtectionProvider; if (pp == null) Console.WriteLine("Protection provider is null"); else Console.WriteLine("Protection provider: {0}", pp.ToString()); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.