ISecurityPolicyEncodable
Supports the methods that convert permission object state to and from an XML element representation.
                using System.Security.Policy;
namespace System.Security
{
    public interface ISecurityPolicyEncodable
    {
        void FromXml(SecurityElement e, PolicyLevel level);
        SecurityElement ToXml(PolicyLevel level);
    }
}