<PackageReference Include="Grpc.Core.Api" Version="2.76.0" />

Grpc.Core.Marshallers

public static class Marshallers
Utilities for creating marshallers.
public static Marshaller<string> StringMarshaller { get; }

Returns a marshaller for string type. This is useful for testing.

public static Marshaller<T> Create<T>(Func<T, byte[]> serializer, Func<byte[], T> deserializer)

Creates a marshaller from specified serializer and deserializer.

public static Marshaller<T> Create<T>(Action<T, SerializationContext> serializer, Func<DeserializationContext, T> deserializer)

Creates a marshaller from specified contextual serializer and deserializer. Note: This method is part of an experimental API that can change or be removed without any prior notice.