C# Класс Precog.Client.Format.DelimitedFormat

A format of delimited text, following the guidelines in RFC 4180.

This format requires a delimiter, quote character and escape character. The escape character is used to represent the quote character inside of quoted values. Although the actual delimiter is configurable, because we follow the general format of RFC 4180, the MIME type is text/csv.

Наследование: AppendFormat
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Delimiter char
Escape char
Quote char

Открытые методы

Метод Описание
DelimitedFormat ( char delimiter ) : System

Create a new DelimitedFormat with the specified delimiter, using the double quote (") for escape and quoting characters.

DelimitedFormat ( char delimiter, char escape, char quote ) : System

Create a new DelimitedFormat with the specified delimiter, escape, and quote characters.

Приватные методы

Метод Описание
RequestParameters ( ) : string

Описание методов

DelimitedFormat() публичный Метод

Create a new DelimitedFormat with the specified delimiter, using the double quote (") for escape and quoting characters.
public DelimitedFormat ( char delimiter ) : System
delimiter char
Результат System

DelimitedFormat() публичный Метод

Create a new DelimitedFormat with the specified delimiter, escape, and quote characters.
public DelimitedFormat ( char delimiter, char escape, char quote ) : System
delimiter char
escape char
quote char
Результат System

Описание свойств

Delimiter публичное свойство

The character used to separate fields
public char Delimiter
Результат char

Escape публичное свойство

The character used to escape quote characters found within quoted values
public char Escape
Результат char

Quote публичное свойство

The character used to quote values in fields
public char Quote
Результат char