System.Security.Cryptography.DataProtectorExtensions.UnprotectString C# (CSharp) Méthode

UnprotectString() public static méthode

public static UnprotectString ( this self, byte input ) : string
self this
input byte
Résultat string
        public static string UnprotectString(this DataProtector self, byte[] input)
        {
            return Encoding.UTF8.GetString(
                self.Unprotect(input));
        }
    }
DataProtectorExtensions