Click or drag to resize
MarshallerT Constructor
Initializes a new marshaller.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.7.0.0
Syntax
public Marshaller(
	Func<T, byte[]> serializer,
	Func<byte[], T> deserializer
)

Parameters

serializer
Type: SystemFuncT, Byte
Function that will be used to serialize messages.
deserializer
Type: SystemFuncByte, T
Function that will be used to deserialize messages.
See Also