SerializationReader Constructor (Stream, Int32, Int32) |
Creates a SerializationReader based around the passed Stream.
Allows the string and object token tables to be presized using
the specified values.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public SerializationReader(
Stream stream,
int stringTokenTablePresize,
int objectTokenTablePresize
)
Public Sub New (
stream As Stream,
stringTokenTablePresize As Integer,
objectTokenTablePresize As Integer
)
Parameters
- stream
- Type: System.IOStream
The stream containing the serialized data - stringTokenTablePresize
- Type: SystemInt32
Number of string tokens to presize - objectTokenTablePresize
- Type: SystemInt32
Number of object tokens to presize
See Also