| 
            
              WriterCreateCFFStream(Stream, Schema, String, String, Encoding) Method
             | 
          
        
        
            Creates a new Combined File Format (.cff) COMTRADE file stream.
            
        
        Namespace: GSF.COMTRADEAssembly: GSF.COMTRADE (in GSF.COMTRADE.dll) Version: 2.4.258-beta
SyntaxPublic 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
)
static member CreateCFFStream : 
        stream : Stream * 
        schema : Schema * 
        ?infLines : string[] * 
        ?hdrLines : string[] * 
        ?encoding : Encoding 
(* Defaults:
        let _infLines = defaultArg infLines null
        let _hdrLines = defaultArg hdrLines null
        let _encoding = defaultArg encoding null
*)
-> unit GSF.COMTRADE.Writer.CreateCFFStream = function(stream, schema, infLines, hdrLines, encoding);
 View SourceParameters
- 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).
 
See Also