C# Class Mono.Xml.XmlTextWriter

Inheritance: System.Xml.XmlWriter
ファイルを表示 Open project: runefs/Marvin

Public Methods

Method Description
Close ( ) : void
Flush ( ) : void
LookupPrefix ( string namespaceUri ) : string
WriteBase64 ( byte buffer, int index, int count ) : void
WriteBinHex ( byte buffer, int index, int count ) : void
WriteCData ( string text ) : void
WriteCharEntity ( char ch ) : void
WriteChars ( char buffer, int index, int count ) : void
WriteComment ( string text ) : void
WriteDocType ( string name, string pubid, string sysid, string subset ) : void
WriteEndAttribute ( ) : void
WriteEndDocument ( ) : void
WriteEndElement ( ) : void
WriteEntityRef ( string name ) : void
WriteFullEndElement ( ) : void
WriteName ( string name ) : void
WriteNmToken ( string nmtoken ) : void
WriteProcessingInstruction ( string name, string text ) : void
WriteQualifiedName ( string localName, string ns ) : void
WriteRaw ( char buffer, int index, int count ) : void
WriteRaw ( string raw ) : void
WriteStartAttribute ( string prefix, string localName, string namespaceUri ) : void
WriteStartDocument ( ) : void
WriteStartDocument ( bool standalone ) : void
WriteStartElement ( string prefix, string localName, string namespaceUri ) : void
WriteString ( string text ) : void
WriteSurrogateCharEntity ( char low, char high ) : void
WriteWhitespace ( string text ) : void
XmlTextWriter ( Stream stream, Encoding encoding ) : System
XmlTextWriter ( TextWriter writer ) : System
XmlTextWriter ( string filename, Encoding encoding ) : System

Private Methods

Method Description
ArgumentError ( string msg ) : Exception
ArgumentOutOfRangeError ( string name ) : Exception
CheckChunkRange ( Array buffer, int index, int count ) : void
CheckMixedContentState ( ) : void
CloseStartElement ( ) : void
CloseStartElementCore ( ) : void
DetermineAttributePrefix ( string prefix, string local, string ns ) : string
Initialize ( TextWriter writer ) : void
InvalidOperation ( string msg ) : Exception
MockupPrefix ( string ns, bool skipLookup ) : string
OutputAutoStartDocument ( ) : void
ShiftStateContent ( string occured, bool allowAttribute ) : void
ShiftStateTopLevel ( string occured, bool allowAttribute, bool dontCheckXmlDecl, bool isCharacter ) : void
StateError ( string occured ) : Exception
WriteCharacterEntity ( char ch, char high, bool surrogate ) : void
WriteCheckedBuffer ( char text, int idx, int length ) : void
WriteCheckedString ( string s ) : void
WriteEndElementCore ( bool full ) : void
WriteEscapedBuffer ( char text, int index, int length, bool isAttribute ) : void
WriteEscapedString ( string text, bool isAttribute ) : void
WriteIndent ( ) : void
WriteIndentAttribute ( ) : void
WriteIndentCore ( int nestFix, bool attribute ) : bool
WriteIndentEndElement ( ) : void
WriteStartDocumentCore ( bool outputStd, bool standalone ) : void
XmlTextWriter ( TextWriter writer, XmlWriterSettings settings, bool closeOutput ) : System

Method Details

Close() public method

public Close ( ) : void
return void

Flush() public method

public Flush ( ) : void
return void

LookupPrefix() public method

public LookupPrefix ( string namespaceUri ) : string
namespaceUri string
return string

WriteBase64() public method

public WriteBase64 ( byte buffer, int index, int count ) : void
buffer byte
index int
count int
return void

WriteBinHex() public method

public WriteBinHex ( byte buffer, int index, int count ) : void
buffer byte
index int
count int
return void

WriteCData() public method

public WriteCData ( string text ) : void
text string
return void

WriteCharEntity() public method

public WriteCharEntity ( char ch ) : void
ch char
return void

WriteChars() public method

public WriteChars ( char buffer, int index, int count ) : void
buffer char
index int
count int
return void

WriteComment() public method

public WriteComment ( string text ) : void
text string
return void

WriteDocType() public method

public WriteDocType ( string name, string pubid, string sysid, string subset ) : void
name string
pubid string
sysid string
subset string
return void

WriteEndAttribute() public method

public WriteEndAttribute ( ) : void
return void

WriteEndDocument() public method

public WriteEndDocument ( ) : void
return void

WriteEndElement() public method

public WriteEndElement ( ) : void
return void

WriteEntityRef() public method

public WriteEntityRef ( string name ) : void
name string
return void

WriteFullEndElement() public method

public WriteFullEndElement ( ) : void
return void

WriteName() public method

public WriteName ( string name ) : void
name string
return void

WriteNmToken() public method

public WriteNmToken ( string nmtoken ) : void
nmtoken string
return void

WriteProcessingInstruction() public method

public WriteProcessingInstruction ( string name, string text ) : void
name string
text string
return void

WriteQualifiedName() public method

public WriteQualifiedName ( string localName, string ns ) : void
localName string
ns string
return void

WriteRaw() public method

public WriteRaw ( char buffer, int index, int count ) : void
buffer char
index int
count int
return void

WriteRaw() public method

public WriteRaw ( string raw ) : void
raw string
return void

WriteStartAttribute() public method

public WriteStartAttribute ( string prefix, string localName, string namespaceUri ) : void
prefix string
localName string
namespaceUri string
return void

WriteStartDocument() public method

public WriteStartDocument ( ) : void
return void

WriteStartDocument() public method

public WriteStartDocument ( bool standalone ) : void
standalone bool
return void

WriteStartElement() public method

public WriteStartElement ( string prefix, string localName, string namespaceUri ) : void
prefix string
localName string
namespaceUri string
return void

WriteString() public method

public WriteString ( string text ) : void
text string
return void

WriteSurrogateCharEntity() public method

public WriteSurrogateCharEntity ( char low, char high ) : void
low char
high char
return void

WriteWhitespace() public method

public WriteWhitespace ( string text ) : void
text string
return void

XmlTextWriter() public method

public XmlTextWriter ( Stream stream, Encoding encoding ) : System
stream Stream
encoding System.Text.Encoding
return System

XmlTextWriter() public method

public XmlTextWriter ( TextWriter writer ) : System
writer System.IO.TextWriter
return System

XmlTextWriter() public method

public XmlTextWriter ( string filename, Encoding encoding ) : System
filename string
encoding System.Text.Encoding
return System