TicketSerializer.Read(BinaryReader) 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.
Reads an AuthenticationTicket.
public:
virtual Microsoft::AspNetCore::Authentication::AuthenticationTicket ^ Read(System::IO::BinaryReader ^ reader);
public virtual Microsoft.AspNetCore.Authentication.AuthenticationTicket Read (System.IO.BinaryReader reader);
public virtual Microsoft.AspNetCore.Authentication.AuthenticationTicket? Read (System.IO.BinaryReader reader);
abstract member Read : System.IO.BinaryReader -> Microsoft.AspNetCore.Authentication.AuthenticationTicket
override this.Read : System.IO.BinaryReader -> Microsoft.AspNetCore.Authentication.AuthenticationTicket
Public Overridable Function Read (reader As BinaryReader) As AuthenticationTicket
Parameters
- reader
- BinaryReader
The BinaryReader.
Returns
The AuthenticationTicket if the format is supported, otherwise null
.