System.Security.Cryptography.DataProtectorExtensions.UnprotectString C# (CSharp) 메소드

UnprotectString() 공개 정적인 메소드

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