IDataProtector.Unprotect Method

Called to unprotect user data.

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

Syntax

'Declaration
Function Unprotect ( _
    protectedData As Byte() _
) As Byte()
'Usage
Dim instance As IDataProtector 
Dim protectedData As Byte()
Dim returnValue As Byte()

returnValue = instance.Unprotect(protectedData)
byte[] Unprotect(
    byte[] protectedData
)
array<unsigned char>^ Unprotect(
    array<unsigned char>^ protectedData
)
abstract Unprotect : 
        protectedData:byte[] -> byte[] 
function Unprotect(
    protectedData : byte[]
) : 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

Reference

IDataProtector Interface

Microsoft.Owin.Security.DataProtection Namespace