| VdaWriter(String, Boolean, String, Encoding, Boolean) Constructor |
Initializes a new instance of the
VdaWriter class.
Namespace: EdiFabric.Framework.WritersAssembly: EdiFabric (in EdiFabric.dll) Version: 10.7.4.0
Syntax public VdaWriter(
string path,
bool append,
string postfix = "",
Encoding encoding = null,
bool upperCase = false
)
Public Sub New (
path As String,
append As Boolean,
Optional postfix As String = "",
Optional encoding As Encoding = Nothing,
Optional upperCase As Boolean = false
)
Parameters
- path String
- The path to the file to write to.
- append Boolean
- Whether to append to the file. The file will be overwritten by default.
- postfix String (Optional)
- The postfix after each segment line.
- encoding Encoding (Optional)
- The encoding. Encoding.UTF8 by default.
- upperCase Boolean (Optional)
- Whether to enforce upper case for the output.
See Also