C# Class HotChai.Serialization.Xml.XmlObjectWriter

Inheritance: ObjectWriter
显示文件 Open project: hotchai/serialize.net

Public Methods

Method Description
Flush ( ) : void
XmlObjectWriter ( Stream stream ) : System

Protected Methods

Method Description
WriteEndArrayToken ( ) : void
WriteEndMemberToken ( ) : void
WriteEndObjectToken ( ) : void
WritePrimitiveNullValue ( ) : void
WritePrimitiveValue ( bool value ) : void
WritePrimitiveValue ( byte value ) : void
WritePrimitiveValue ( double value ) : void
WritePrimitiveValue ( float value ) : void
WritePrimitiveValue ( int value ) : void
WritePrimitiveValue ( long value ) : void
WritePrimitiveValue ( string value ) : void
WritePrimitiveValue ( uint value ) : void
WritePrimitiveValue ( ulong value ) : void
WriteStartArrayToken ( ) : void
WriteStartMemberToken ( int memberKey ) : void
WriteStartObjectToken ( ) : void

Method Details

Flush() public method

public Flush ( ) : void
return void

WriteEndArrayToken() protected method

protected WriteEndArrayToken ( ) : void
return void

WriteEndMemberToken() protected method

protected WriteEndMemberToken ( ) : void
return void

WriteEndObjectToken() protected method

protected WriteEndObjectToken ( ) : void
return void

WritePrimitiveNullValue() protected method

protected WritePrimitiveNullValue ( ) : void
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( bool value ) : void
value bool
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( byte value ) : void
value byte
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( double value ) : void
value double
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( float value ) : void
value float
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( int value ) : void
value int
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( long value ) : void
value long
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( string value ) : void
value string
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( uint value ) : void
value uint
return void

WritePrimitiveValue() protected method

protected WritePrimitiveValue ( ulong value ) : void
value ulong
return void

WriteStartArrayToken() protected method

protected WriteStartArrayToken ( ) : void
return void

WriteStartMemberToken() protected method

protected WriteStartMemberToken ( int memberKey ) : void
memberKey int
return void

WriteStartObjectToken() protected method

protected WriteStartObjectToken ( ) : void
return void

XmlObjectWriter() public method

public XmlObjectWriter ( Stream stream ) : System
stream Stream
return System