|
VdaWriter Constructor (String, Boolean, String, Encoding)
|
Initializes a new instance of the
VdaWriter class.
Namespace:
EdiFabric.Framework.Writers
Assembly:
EdiFabric (in EdiFabric.dll) Version: 10.4.1.0 (10.4.1.0)
Syntaxpublic VdaWriter(
string path,
bool append,
string postfix = "",
Encoding encoding = null
)
Public Sub New (
path As String,
append As Boolean,
Optional postfix As String = "",
Optional encoding As Encoding = Nothing
)
Parameters
- path
- Type: SystemString
The path to the file to write to. - append
- Type: SystemBoolean
Whether to append to the file. The file will be overwritten by default. - postfix (Optional)
- Type: SystemString
The postfix after each segment line. - encoding (Optional)
- Type: System.TextEncoding
The encoding. Encoding.UTF8 by default.
See Also