C# 클래스 TagTool.Layouts.TagLayoutWriter

Base for a class which can write tag layouts to files.
파일 보기 프로젝트 열기: TheGuardians/TagTool

공개 메소드들

메소드 설명
GetSuggestedFileName ( TagLayout layout ) : string

Gets the suggested filename for a layout.

WriteLayout ( TagLayout layout, TextWriter writer ) : void

Writes a layout to a stream.

WriteLayout ( TagLayout layout, string path ) : void

Writes a layout to a file.

메소드 상세

GetSuggestedFileName() 공개 추상적인 메소드

Gets the suggested filename for a layout.
public abstract GetSuggestedFileName ( TagLayout layout ) : string
layout TagLayout The layout.
리턴 string

WriteLayout() 공개 추상적인 메소드

Writes a layout to a stream.
public abstract WriteLayout ( TagLayout layout, TextWriter writer ) : void
layout TagLayout The layout to write.
writer System.IO.TextWriter The writer to write to.
리턴 void

WriteLayout() 공개 메소드

Writes a layout to a file.
public WriteLayout ( TagLayout layout, string path ) : void
layout TagLayout The layout to write.
path string The path to write to.
리턴 void