CsvConfiguration<TTargetType> class
Fluent Configuration class for the CsvSerializer class.
public class CsvConfiguration<TTargetType> : TextConfiguration<TTargetType>
where TTargetType : new()
Public Members
| name | description |
|---|---|
| AlwaysWriteQualifier(…) | True if should wrap every field in the Qualifier during serialization. If false, then the qualifier is only written if the field contains the Delimiter. |
| ByConvention() | Automatically configures serializer based on the class definition. All properties and fields are added as serializable in the order they appear in the class. |
| Delimiter(…) | Character which is used to delimit fields in the record. |
| ForMember(…) | Sets the serialization properties of a member of the class. If ByConvention was called first, this will override those inferred settings. |
| Ignore(…) | Marks a field as not serializable. |
| Qualifier(…) | Character used to wrap a field if the field contins the Delimiter. |