WriterCreateCFFStream(String, Schema, String, String, Encoding) Method

Creates a new Combined File Format (.cff) COMTRADE file stream.

Definition

Namespace: Gemstone.COMTRADE
Assembly: Gemstone.COMTRADE (in Gemstone.COMTRADE.dll) Version: 1.0.141 -- Release Build+78b9295d567a463860b78c894a6e3af01c4ff9b4
public static FileStream CreateCFFStream(
	string fileName,
	Schema schema,
	string[]? infLines = null,
	string[]? hdrLines = null,
	Encoding? encoding = null
)

Parameters

fileName  String
Target file name. Must have ".cff" extension.
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).

Return Value

FileStream
New file stream for Combined File Format (.cff) COMTRADE file, ready to write at data section.

See Also