WriterCreateCFFStreamAscii(String, Schema, String, String, Encoding) Method
Creates a new Combined File Format (.cff) COMTRADE file stream targeted for ASCII.
Namespace: Gemstone.COMTRADEAssembly: Gemstone.COMTRADE (in Gemstone.COMTRADE.dll) Version: 1.0.138 -- Release Build+36e6f5b589608b4f74e47d15d737db2e11492383
Public Shared Function CreateCFFStreamAscii (
fileName As String,
schema As Schema,
Optional infLines As String() = Nothing,
Optional hdrLines As String() = Nothing,
Optional encoding As Encoding = Nothing
) As StreamWriter
Gemstone.COMTRADE.Writer.CreateCFFStreamAscii = function(fileName, schema, infLines, hdrLines, encoding);
- 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).
StreamWriterNew stream writer for Combined File Format (.cff) COMTRADE file, ready to write at data section.
For COMTRADE versions greater than 2001, any use of the term ASCII also inherently implies Unicode UTF-8.
When then
encoding parameter is
null, the default, UTF-8 encoding will be used
for text writes. If ASCII encoding needs to be enforced for backwards compatibility reasons, then the
encoding parameter will need to be set to
ASCII.