System.Configuration.ProtectedConfigurationProvider.Decrypt C# (CSharp) Method

Decrypt() public abstract method

public abstract Decrypt ( XmlNode encryptedNode ) : XmlNode
encryptedNode XmlNode
return XmlNode
        public abstract XmlNode Decrypt(XmlNode encryptedNode);
    }

Usage Example

Example #1
0
        internal static string DecryptSection(string encryptedXml, ProtectedConfigurationProvider provider)
        {
            XmlDocument document = new XmlDocument();

            document.LoadXml(encryptedXml);
            return(provider.Decrypt(document.DocumentElement).OuterXml);
        }
All Usage Examples Of System.Configuration.ProtectedConfigurationProvider::Decrypt
ProtectedConfigurationProvider