Share via


IDataProtector.Unprotect Method (Byte[])

 

Called to unprotect user data.

Namespace:   Microsoft.Owin.Security.DataProtection
Assembly:  Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)

Syntax

byte[] Unprotect(
    byte[] protectedData
)
array<unsigned char>^ Unprotect(
    array<unsigned char>^ protectedData
)
abstract Unprotect : 
        protectedData:byte[] -> byte[]
Function Unprotect (
    protectedData As Byte()
) As Byte()

Parameters

  • protectedData
    Type: System.Byte[]

    The byte array returned by a call to Protect on an identical IDataProtection service.

Return Value

Type: System.Byte[]

See Also

IDataProtector Interface
Microsoft.Owin.Security.DataProtection Namespace

Return to top