Show / Hide Table of Contents

Class DelimitedStringOptions

Configuration options for Split(String, Action<DelimitedStringOptions>).

Inheritance
Object
DelimitedStringOptions
Implements
IParameterObject
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class DelimitedStringOptions : IParameterObject

Constructors

| Improve this Doc View Source

DelimitedStringOptions()

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.

PropertyInitial Value
Delimiter,
Qualifier"

Properties

| Improve this Doc View Source

Delimiter

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

value is null.

ArgumentException

value cannot be empty.

| Improve this Doc View Source

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

value is null.

ArgumentException

value cannot be empty.

Implements

IParameterObject
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright 2008-2022 Geekle. All rights reserved. Code with passion and love; deploy with confidence. 👨‍💻️🔥❤️🚀😎
Generated by DocFX