IFieldCodec<T> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides functionality for reading and writing values of a specified type. Implements the IFieldCodec
public interface IFieldCodec<T> : Orleans.Serialization.Codecs.IFieldCodec
type IFieldCodec<'T> = interface
interface IFieldCodec
Public Interface IFieldCodec(Of T)
Implements 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
IFieldCodec.ReadValue<TInput>(Reader<TInput>, Field) | |
IFieldCodec.WriteField<TBufferWriter>(Writer<TBufferWriter>, UInt32, Type, Object) |