TicketSerializer.Deserialize(Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deserializes the specified authentication ticket payload.
public:
virtual Microsoft::AspNetCore::Authentication::AuthenticationTicket ^ Deserialize(cli::array <System::Byte> ^ data);
public virtual Microsoft.AspNetCore.Authentication.AuthenticationTicket Deserialize(byte[] data);
public virtual Microsoft.AspNetCore.Authentication.AuthenticationTicket? Deserialize(byte[] data);
abstract member Deserialize : byte[] -> Microsoft.AspNetCore.Authentication.AuthenticationTicket
override this.Deserialize : byte[] -> Microsoft.AspNetCore.Authentication.AuthenticationTicket
Public Overridable Function Deserialize (data As Byte()) As AuthenticationTicket
Parameters
- data
- Byte[]
The serialized authentication ticket.
Returns
The deserialized AuthenticationTicket, or null if the format is unsupported.