Click or drag to resize

IRecordWriter Interface

Non-generic interface for record writers.

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public interface IRecordWriter : IDisposable

The IRecordWriter type exposes the following members.

Properties
 NameDescription
Public propertyBytesWritten Gets the number of bytes that were actually written to the output.
Public propertyOutputBytes Gets the size of the written records after serialization.
Public propertyRecordsWritten Gets the total number of records written by this record writer.
Public propertyWriteTime Gets the time spent writing.
Top
Methods
 NameDescription
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Public methodFinishWriting Informs the record writer that no further records will be written.
Public methodWriteRecord Writes a record.
Top
Remarks
Note  Note
Record writers must inherit from RecordWriterT, not just implement this interface.
See Also