Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SectionInformation::ProtectSection Method (String^)

 

Marks a configuration section for protection.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

public:
void ProtectSection(
	String^ protectionProvider
)

Parameters

protectionProvider
Type: System::String^

The name of the protection provider to use.

Exception Condition
InvalidOperationException

The AllowLocation property is set to false.

- or -

The target section is already a protected data section.

The ProtectSection method marks the section for encryption so it will be written in encrypted form on disk.

The following protection providers are included by default:

DpapiProtectedConfigurationProvider

RsaProtectedConfigurationProvider

System_CAPS_noteNote

If you call the ProtectSection method with a null parameter or an empty string, the RsaProtectedConfigurationProvider class is used as the protection provider.

For more information about protected configuration sections, see Encrypting Configuration Information Using Protected Configuration.

The following example shows how to use the ProtectSection method.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: