Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Deserializes the ticket data.
Namespace: Microsoft.Owin.Security.DataHandler.Serializer
Assembly: Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)
Syntax
public virtual AuthenticationTicket Deserialize(
byte[] data
)
public:
virtual AuthenticationTicket^ Deserialize(
array<unsigned char>^ data
)
abstract Deserialize :
data:byte[] -> AuthenticationTicket
override Deserialize :
data:byte[] -> AuthenticationTicket
Public Overridable Function Deserialize (
data As Byte()
) As AuthenticationTicket
Parameters
data
Type: System.Byte[]The data to deserialize.
Return Value
Type: Microsoft.Owin.Security.AuthenticationTicket
The data being deserialized.
Implements
IDataSerializer<TModel>.Deserialize(Byte[])
See Also
TicketSerializer Class
Microsoft.Owin.Security.DataHandler.Serializer Namespace
Return to top