Share via


IDataSerializer<TModel> Interface

 

Represents an interface for data serializer.

Namespace:   Microsoft.Owin.Security.DataHandler.Serializer
Assembly:  Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)

Syntax

public interface IDataSerializer<TModel>
generic<typename TModel>
public interface class IDataSerializer
type IDataSerializer<'TModel> = interface end
Public Interface IDataSerializer(Of TModel)

Type Parameters

  • TModel
    The type of model for the data.

Methods

Name Description
System_CAPS_pubmethod Deserialize(Byte[])

Deserializes the specified data.

System_CAPS_pubmethod Serialize(TModel)

Serializes a data with a given model.

See Also

Microsoft.Owin.Security.DataHandler.Serializer Namespace

Return to top