Class Marshallers (2.48.0)

public static class Marshallers : object

Utilities for creating marshallers.

Inheritance

Object > Marshallers

Namespace

Grpc.Core

Assembly

Grpc.Core.Api.dll

Properties

StringMarshaller

public static Marshaller<string> StringMarshaller { get; }

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

Property Value
Type Description
Marshaller<String>

Methods

Create<T>(Action<T, SerializationContext>, Func<DeserializationContext, T>)

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.

Parameters
Name Description
serializer Action<T, SerializationContext>
deserializer Func<DeserializationContext, T>
Returns
Type Description
Marshaller<T>
Type Parameter
Name Description
T

Create<T>(Func<T, Byte[]>, Func<Byte[], T>)

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

Creates a marshaller from specified serializer and deserializer.

Parameters
Name Description
serializer Func<T, Byte[]>
deserializer Func<Byte[], T>
Returns
Type Description
Marshaller<T>
Type Parameter
Name Description
T