IFieldCodec<T> Interface

Definition

Provides functionality for reading and writing values of a specified type. Implements the IFieldCodec

C#
public interface IFieldCodec<T> : Orleans.Serialization.Codecs.IFieldCodec

Type Parameters

T

The type which this implementation can read and write.

Derived
Implements

Methods

ReadValue<TInput>(Reader<TInput>, Field)

Reads a value.

WriteField<TBufferWriter>(Writer<TBufferWriter>, UInt32, Type, Object)

Writes a field using the provided untyped value. The type must still match the codec instance!

(Inherited from IFieldCodec)
WriteField<TBufferWriter>(Writer<TBufferWriter>, UInt32, Type, T)

Writes a field.

Explicit Interface Implementations

Applies to

Product Versions
.NET Orleans 7.0.0, 8.0.0, 8.1.0, 8.2.0, 9.0.0

See also