StreamSerializationTGetReadMethod Method

Gets read deserialization method for type T.

Definition

Namespace: Gemstone.IO.Parsing
Assembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.147 -- Release Build+f1f9c0e9f92f995ccf39530a9405eeed9dafd871
public static Func<Stream, T>? GetReadMethod(
	Type? elementType = null,
	bool? skipAutoListHandling = null
)

Parameters

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.

Return Value

FuncStream, T
Read deserialization method.

See Also