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
파일 보기 프로젝트 열기: precog/precog_dotnet_client

공개 프로퍼티들

프로퍼티 타입 설명
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