| StreamRecordInput Constructor |
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public StreamRecordInput(
Type recordReaderType,
Stream stream,
bool isMemoryBased,
string sourceName,
bool inputContainsRecordSizes,
bool allowRecordReuse
)
Public Sub New (
recordReaderType As Type,
stream As Stream,
isMemoryBased As Boolean,
sourceName As String,
inputContainsRecordSizes As Boolean,
allowRecordReuse As Boolean
)
public:
StreamRecordInput(
Type^ recordReaderType,
Stream^ stream,
bool isMemoryBased,
String^ sourceName,
bool inputContainsRecordSizes,
bool allowRecordReuse
)
new :
recordReaderType : Type *
stream : Stream *
isMemoryBased : bool *
sourceName : string *
inputContainsRecordSizes : bool *
allowRecordReuse : bool -> StreamRecordInput
Parameters
- recordReaderType
- Type: SystemType
Type of the record reader. This must be a specialization of the BinaryRecordReaderT generic class. - stream
- Type: System.IOStream
The stream. - isMemoryBased
- Type: SystemBoolean
if set to , the input is read from memory and not from disk. - sourceName
- Type: SystemString
Name of the source. - inputContainsRecordSizes
- Type: SystemBoolean
if set to the input data contains record size markers. - allowRecordReuse
- Type: SystemBoolean
if set to [allow record reuse].
See Also