Adf.Base.Encryption.EncryptionExtensions.Encrypt C# (CSharp) Method

Encrypt() public static method

public static Encrypt ( this value, EncryptionType type ) : string
value this
type Adf.Core.Encryption.EncryptionType
return string
        public static string Encrypt(this string value, EncryptionType type)
        {
            return EncryptionManager.Encrypt(type, value);
        }
EncryptionExtensions