C# Class System.Xml.Xsl.Runtime.XmlRawWriterWrapper

This internal class implements the XmlRawWriter interface by passing all calls to a wrapped XmlWriter implementation.
Inheritance: System.Xml.XmlRawWriter
Afficher le fichier Open project: gbarnett/shared-source-cli-2.0

Méthodes publiques

Méthode Description
Close ( ) : void
Flush ( ) : 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
WriteEntityRef ( string name ) : void
WriteProcessingInstruction ( string name, string text ) : void
WriteRaw ( char buffer, int index, int count ) : void
WriteRaw ( string data ) : void
WriteStartAttribute ( string prefix, string localName, string ns ) : void
WriteStartElement ( string prefix, string localName, string ns ) : void
WriteString ( string text ) : void
WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
WriteValue ( System.DateTime value ) : void
WriteValue ( bool value ) : void
WriteValue ( decimal value ) : void
WriteValue ( double value ) : void
WriteValue ( float value ) : void
WriteValue ( int value ) : void
WriteValue ( long value ) : void
WriteValue ( object value ) : void
WriteValue ( string value ) : void
WriteWhitespace ( string ws ) : void
XmlRawWriterWrapper ( XmlWriter writer ) : System

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Private Methods

Méthode Description
StartElementContent ( ) : void

No-op.

WriteEndElement ( string prefix, string localName, string ns ) : void

Forward to WriteEndElement().

WriteFullEndElement ( string prefix, string localName, string ns ) : void

Forward to WriteFullEndElement().

WriteNamespaceDeclaration ( string prefix, string ns ) : void

Forward to WriteAttribute();

WriteXmlDeclaration ( XmlStandalone standalone ) : void

No-op.

WriteXmlDeclaration ( string xmldecl ) : void

No-op.

Method Details

Close() public méthode

public Close ( ) : void
Résultat void

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

WriteCData() public méthode

public WriteCData ( string text ) : void
text string
Résultat void

WriteCharEntity() public méthode

public WriteCharEntity ( char ch ) : void
ch char
Résultat void

WriteChars() public méthode

public WriteChars ( char buffer, int index, int count ) : void
buffer char
index int
count int
Résultat void

WriteComment() public méthode

public WriteComment ( string text ) : void
text string
Résultat void

WriteDocType() public méthode

public WriteDocType ( string name, string pubid, string sysid, string subset ) : void
name string
pubid string
sysid string
subset string
Résultat void

WriteEndAttribute() public méthode

public WriteEndAttribute ( ) : void
Résultat void

WriteEntityRef() public méthode

public WriteEntityRef ( string name ) : void
name string
Résultat void

WriteProcessingInstruction() public méthode

public WriteProcessingInstruction ( string name, string text ) : void
name string
text string
Résultat void

WriteRaw() public méthode

public WriteRaw ( char buffer, int index, int count ) : void
buffer char
index int
count int
Résultat void

WriteRaw() public méthode

public WriteRaw ( string data ) : void
data string
Résultat void

WriteStartAttribute() public méthode

public WriteStartAttribute ( string prefix, string localName, string ns ) : void
prefix string
localName string
ns string
Résultat void

WriteStartElement() public méthode

public WriteStartElement ( string prefix, string localName, string ns ) : void
prefix string
localName string
ns string
Résultat void

WriteString() public méthode

public WriteString ( string text ) : void
text string
Résultat void

WriteSurrogateCharEntity() public méthode

public WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
lowChar char
highChar char
Résultat void

WriteValue() public méthode

public WriteValue ( System.DateTime value ) : void
value System.DateTime
Résultat void

WriteValue() public méthode

public WriteValue ( bool value ) : void
value bool
Résultat void

WriteValue() public méthode

public WriteValue ( decimal value ) : void
value decimal
Résultat void

WriteValue() public méthode

public WriteValue ( double value ) : void
value double
Résultat void

WriteValue() public méthode

public WriteValue ( float value ) : void
value float
Résultat void

WriteValue() public méthode

public WriteValue ( int value ) : void
value int
Résultat void

WriteValue() public méthode

public WriteValue ( long value ) : void
value long
Résultat void

WriteValue() public méthode

public WriteValue ( object value ) : void
value object
Résultat void

WriteValue() public méthode

public WriteValue ( string value ) : void
value string
Résultat void

WriteWhitespace() public méthode

public WriteWhitespace ( string ws ) : void
ws string
Résultat void

XmlRawWriterWrapper() public méthode

public XmlRawWriterWrapper ( XmlWriter writer ) : System
writer System.Xml.XmlWriter
Résultat System