StreamSerializationTGetWriteMethod Method
Gets write serialization method for type T.
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.156 -- Release Build+6a9f88f477f6aa18d5026c0c0fcc061b1aaed2d2
public static Action<Stream, T>? GetWriteMethod(
Type? elementType = null,
bool? skipAutoListHandling = null
)
Public Shared Function GetWriteMethod (
Optional elementType As Type = Nothing,
Optional skipAutoListHandling As Boolean? = Nothing
) As Action(Of Stream, T)
Gemstone.IO.Parsing.StreamSerialization.GetWriteMethod = function(elementType, skipAutoListHandling);
- elementType Type (Optional)
-
Provides a type representing the encompassed elements when type T is a list or array type, and element type cannot otherwise
be ascertained, e.g., when element type is an Object.
- skipAutoListHandling NullableBoolean (Optional)
- Set to true to skip automatic handling of list types.
ActionStream,
TWrite serialization method.