ProtectedConfigurationProvider.Encrypt Method
.NET Framework 4.5
Encrypts the passed XmlNode object from a configuration file.
Assembly: System.Configuration (in System.Configuration.dll)
Parameters
- node
- Type: System.Xml.XmlNode
The XmlNode object to encrypt.
The following example shows how to use Encrypt to perform custom encryption.
// Performs encryption. public override XmlNode Encrypt(XmlNode node) { string encryptedData = EncryptString(node.OuterXml); XmlDocument xmlDoc = new XmlDocument(); xmlDoc.PreserveWhitespace = true; xmlDoc.LoadXml("<EncryptedData>" + encryptedData + "</EncryptedData>"); return xmlDoc.DocumentElement; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.