C# 클래스 FlatFiles.SeparatedValueWriter

Builds textual representations of data by separating fields with a delimiter.
상속: IWriter
파일 보기 프로젝트 열기: jehugaleahsa/FlatFiles

공개 메소드들

메소드 설명
GetSchema ( ) : FlatFiles.SeparatedValueSchema

Gets the schema used to build the output.

SeparatedValueWriter ( TextWriter writer, FlatFiles.SeparatedValueOptions options = null ) : System

Initializes a new SeparatedValueWriter without a schema.

SeparatedValueWriter ( TextWriter writer, FlatFiles.SeparatedValueSchema schema, FlatFiles.SeparatedValueOptions options = null ) : System

Initializes a new SeparatedValueWriter with the given schema.

Write ( object values ) : void

Writes the textual representation of the given values to the writer.

비공개 메소드들

메소드 설명
IWriter ( ) : ISchema
SeparatedValueWriter ( TextWriter writer, FlatFiles.SeparatedValueSchema schema, FlatFiles.SeparatedValueOptions options, bool hasSchema ) : System

메소드 상세

GetSchema() 공개 메소드

Gets the schema used to build the output.
public GetSchema ( ) : FlatFiles.SeparatedValueSchema
리턴 FlatFiles.SeparatedValueSchema

SeparatedValueWriter() 공개 메소드

Initializes a new SeparatedValueWriter without a schema.
The writer is null.
public SeparatedValueWriter ( TextWriter writer, FlatFiles.SeparatedValueOptions options = null ) : System
writer System.IO.TextWriter A writer over the separated value document.
options FlatFiles.SeparatedValueOptions The options used to format the output.
리턴 System

SeparatedValueWriter() 공개 메소드

Initializes a new SeparatedValueWriter with the given schema.
The writer is null. The schema is null.
public SeparatedValueWriter ( TextWriter writer, FlatFiles.SeparatedValueSchema schema, FlatFiles.SeparatedValueOptions options = null ) : System
writer System.IO.TextWriter A writer over the separated value document.
schema FlatFiles.SeparatedValueSchema The schema of the separated value document.
options FlatFiles.SeparatedValueOptions The options used to format the output.
리턴 System

Write() 공개 메소드

Writes the textual representation of the given values to the writer.
The values array is null.
public Write ( object values ) : void
values object The values to write.
리턴 void