Class CsvOptions
Represents all csv related output serialization options
including formats, encodings, delimiters and performance metrics
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Mars.Interfaces.Model.Options
Assembly: Mars.Interfaces.dll
Syntax
public class CsvOptions : AbstractFileOptions, IDisposable
Constructors
| Improve this Doc View SourceCsvOptions()
Represents all csv related output serialization options
including formats, encodings, delimiters and performance metrics
Declaration
public CsvOptions()
Properties
| Improve this Doc View SourceDelimiter
Gets or sets the delimiter
Declaration
[JsonProperty("delimiter", NullValueHandling = NullValueHandling.Ignore)]
public string Delimiter { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IncludeHeader
Gets or sets the flag whether the header line shall be included
Declaration
[JsonProperty("includeHeader", NullValueHandling = NullValueHandling.Ignore)]
public bool IncludeHeader { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Implements
System.IDisposable