StreamSerializationTGetReadMethod Method
Gets read deserialization method for type T.
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.138 -- Release Build+f13f8f80c1917f967d82dedfdc2c53029991e99f
public static Func<Stream, T>? GetReadMethod(
Type? elementType = null,
bool? skipAutoListHandling = null
)
Public Shared Function GetReadMethod (
Optional elementType As Type = Nothing,
Optional skipAutoListHandling As Boolean? = Nothing
) As Func(Of Stream, T)
Gemstone.IO.Parsing.StreamSerialization.GetReadMethod = 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.
FuncStream,
TRead deserialization method.