Adf.Base.Encryption.EncryptionExtensions.Encrypt C# (CSharp) 메소드

Encrypt() 공개 정적인 메소드

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