SerializerRepositoryGetT Method (SerializationContext) |
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public MessagePackSerializer<T> Get<T>(
SerializationContext context
)
Public Function Get(Of T) (
context As SerializationContext
) As MessagePackSerializer(Of T)
public:
generic<typename T>
MessagePackSerializer<T>^ Get(
SerializationContext^ context
)
member Get :
context : SerializationContext -> MessagePackSerializer<'T>
Parameters
- context
- Type: MsgPack.SerializationSerializationContext
A serialization context.
Type Parameters
- T
- Type of the object to be marshaled/unmarshaled.
Return Value
Type:
MessagePackSerializerTMessagePackSerializerT. If no appropriate mashalers has benn registered, then
null.
See Also