Method | Description | |
---|---|---|
Close ( ) : void | ||
EndEvents ( ) : void | ||
EventsToString ( ) : string |
Concatenate all element text and atomic value events and return the resulting string.
|
|
EventsToWriter ( |
Replay all cached events to an XmlWriter.
|
|
Flush ( ) : void | ||
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 | ||
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 ( object value ) : void |
All other WriteValue methods are implemented by XmlWriter to delegate to WriteValue(object) or WriteValue(string), so only these two methods need to be implemented.
|
|
WriteValue ( string value ) : void | ||
WriteWhitespace ( string ws ) : void | ||
XmlEventCache ( string baseUri, bool hasRootNode ) : System |
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Method | Description | |
---|---|---|
AddEvent ( XmlEventType eventType ) : void | ||
AddEvent ( XmlEventType eventType, object o ) : void | ||
AddEvent ( XmlEventType eventType, string s1 ) : void | ||
AddEvent ( XmlEventType eventType, string s1, string s2 ) : void | ||
AddEvent ( XmlEventType eventType, string s1, string s2, string s3 ) : void | ||
AddEvent ( XmlEventType eventType, string s1, string s2, string s3, object o ) : void | ||
NewEvent ( ) : int | ||
StartElementContent ( ) : void | ||
ToBytes ( byte buffer, int index, int count ) : byte[] |
Create a standalone buffer that doesn't need an index or count passed along with it.
|
|
WriteEndBase64 ( ) : void | ||
WriteEndElement ( string prefix, string localName, string ns ) : void | ||
WriteFullEndElement ( string prefix, string localName, string ns ) : void | ||
WriteNamespaceDeclaration ( string prefix, string ns ) : void | ||
WriteXmlDeclaration ( XmlStandalone standalone ) : void | ||
WriteXmlDeclaration ( string xmldecl ) : void |
public EventsToWriter ( |
||
writer | ||
return | void |
public WriteBase64 ( byte buffer, int index, int count ) : void | ||
buffer | byte | |
index | int | |
count | int | |
return | void |
public WriteBinHex ( byte buffer, int index, int count ) : void | ||
buffer | byte | |
index | int | |
count | int | |
return | void |
public WriteChars ( char buffer, int index, int count ) : void | ||
buffer | char | |
index | int | |
count | int | |
return | void |
public WriteDocType ( string name, string pubid, string sysid, string subset ) : void | ||
name | string | |
pubid | string | |
sysid | string | |
subset | string | |
return | void |
public WriteProcessingInstruction ( string name, string text ) : void | ||
name | string | |
text | string | |
return | void |
public WriteRaw ( char buffer, int index, int count ) : void | ||
buffer | char | |
index | int | |
count | int | |
return | void |
public WriteStartAttribute ( string prefix, string localName, string ns ) : void | ||
prefix | string | |
localName | string | |
ns | string | |
return | void |
public WriteStartElement ( string prefix, string localName, string ns ) : void | ||
prefix | string | |
localName | string | |
ns | string | |
return | void |
public WriteSurrogateCharEntity ( char lowChar, char highChar ) : void | ||
lowChar | char | |
highChar | char | |
return | void |
public XmlEventCache ( string baseUri, bool hasRootNode ) : System | ||
baseUri | string | |
hasRootNode | bool | |
return | System |