WriterCreateCFFStream(Stream, Schema, String, String, Encoding) Method
Creates a new Combined File Format (.cff) COMTRADE file stream.
Namespace: Gemstone.COMTRADEAssembly: Gemstone.COMTRADE (in Gemstone.COMTRADE.dll) Version: 1.0.128 -- Release Build+c1068d6f7b1cbea5c860803b7fe23d1a1d3918a0
Public Shared Sub CreateCFFStream (
stream As Stream,
schema As Schema,
Optional infLines As String() = Nothing,
Optional hdrLines As String() = Nothing,
Optional encoding As Encoding = Nothing
)
public:
static void CreateCFFStream(
Stream^ stream,
Schema^ schema,
array<String^>^ infLines = nullptr,
array<String^>^ hdrLines = nullptr,
Encoding^ encoding = nullptr
)
Gemstone.COMTRADE.Writer.CreateCFFStream = function(stream, schema, infLines, hdrLines, encoding);
Parameters
- stream Stream
- Target stream.
- schema Schema
- Schema of file stream.
- infLines String (Optional)
- Lines of "INF" section to write to stream, if any.
- hdrLines String (Optional)
- Lines of "HDR" section to write to stream, if any.
- encoding Encoding (Optional)
- Target encoding; null value will default to UTF-8 (no BOM).