Class DelimitedStringOptions
Configuration options for Split(String, Action<DelimitedStringOptions>).
Implements
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class DelimitedStringOptions : IParameterObject
Constructors
| Improve this Doc View SourceDelimitedStringOptions()
Initializes a new instance of the DelimitedStringOptions class.
Declaration
public DelimitedStringOptions()
Remarks
The following table shows the initial property values for an instance of DelimitedStringOptions.
Property | Initial Value |
---|---|
Delimiter | , |
Qualifier | " |
Properties
| Improve this Doc View SourceDelimiter
Gets or sets the delimiter that separates the fields. Default is comma (,).
Declaration
public string Delimiter { get; set; }
Property Value
Type | Description |
---|---|
String | The delimiter that separates the fields. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
ArgumentException |
|
Qualifier
Gets or sets the qualifier placed around each field to signify that it is the same field. Default is quotation mark (").
Declaration
public string Qualifier { get; set; }
Property Value
Type | Description |
---|---|
String | The qualifier placed around each field to signify that it is the same field. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
ArgumentException |
|