Exemplo n.º 1
0
        protected virtual object Decrypt(object value)
        {
            var str = value as string;

            return(String.IsNullOrEmpty(str) ? value : ProtectedDataUtils.Decrypt(str, secretKey));
        }