C# Class JsonFx.BuildTools.HtmlDistiller.Writers.HtmlWriter

Inheritance: IHtmlWriter, IReversePeek, IDisposable
Datei anzeigen Open project: pocket-playlab/jsonfx-v1 Class Usage Examples

Public Methods

Method Description
HtmlWriter ( ) : System

Ctor

HtmlWriter ( Stream stream ) : System

Ctor

HtmlWriter ( TextWriter writer ) : System

Ctor

ToString ( ) : string

Returns a System.String that represents the current TextWriter.

WriteLiteral ( string value ) : void
WriteTag ( HtmlTag tag ) : void

Renders the tag to the output

Private Methods

Method Description
IDisposable ( ) : void

Releases all resources used by the System.IO.TextWriter object.

IReversePeek ( int peek ) : char
WriteAttributes ( HtmlTag tag ) : void

Renders the style property

WriteStyles ( HtmlTag tag ) : void

Renders the style property

WriteUnparsedTag ( HtmlTag tag ) : void

Method Details

HtmlWriter() public method

Ctor
public HtmlWriter ( ) : System
return System

HtmlWriter() public method

Ctor
public HtmlWriter ( Stream stream ) : System
stream Stream
return System

HtmlWriter() public method

Ctor
public HtmlWriter ( TextWriter writer ) : System
writer System.IO.TextWriter the underlying TextWriter
return System

ToString() public method

Returns a System.String that represents the current TextWriter.
public ToString ( ) : string
return string

WriteLiteral() public method

public WriteLiteral ( string value ) : void
value string
return void

WriteTag() public method

Renders the tag to the output
public WriteTag ( HtmlTag tag ) : void
tag HtmlTag
return void