Click or drag to resize

ValueWriter Class

Provides methods for determining the IValueWriterT for a type.
Inheritance Hierarchy
SystemObject
  Ookii.Jumbo.IOValueWriter

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public static class ValueWriter

The ValueWriter type exposes the following members.

Methods
 NameDescription
Public methodStatic memberGetWriter Gets the IValueWriterT implementation for the specified type.
Public methodStatic memberReadNullableT Reads a nullable value from the specified reader using the type's IWritable implementation or its IValueWriterT.
Public methodStatic memberReadNullableStructT Reads a nullable structure value from the specified reader using the type's IValueWriterT.
Public methodStatic memberWriteNullableT(T, BinaryWriter) Writes the specified nullable value using its IWritable implementation or its IValueWriterT.
Public methodStatic memberWriteNullableT(NullableT, BinaryWriter) Writes the specified nullable structure using its IValueWriterT.
Public methodStatic memberWriteValueT Writes the specified value using its IWritable implementation or its IValueWriterT.
Top
Remarks
Normally, you should use the ValueWriterT class to access value writers.
See Also