Method | Description | |
---|---|---|
ActiveSyncXmlWriter ( |
Initializes a new instance of the ActiveSyncXmlWriter class.
|
|
WriteEndAttribute ( ) : void |
Closes the previous System.Xml.XmlTextWriter.WriteStartAttribute(System.String,System.String,System.String) call.
|
|
WriteRaw ( string data ) : void |
Writes raw markup manually from a string.(true or false will be 1 or 0)
|
|
WriteStartAttribute ( string prefix, string localName, string ns ) : void |
Writes the start of an attribute.
|
|
WriteStartElement ( string prefix, string localName, string ns ) : void |
Writes the start of an element
|
|
WriteString ( string text ) : void |
Writes the given text content.
|
|
WriteValue ( bool value ) : void |
Override this, true or false will be 1 or 0
|
Method | Description | |
---|---|---|
IsCDATAValue ( ) : bool |
Verifies whether the current element is a CDATA value or not.
|
public ActiveSyncXmlWriter ( |
||
stream | The steam be write. | |
encoding | Represents a character encoding. | |
return | System.Globalization |
public WriteRaw ( string data ) : void | ||
data | string | String containing the text to write. |
return | void |
public WriteStartAttribute ( string prefix, string localName, string ns ) : void | ||
prefix | string | Namespace prefix of the attribute. |
localName | string | LocalName of the attribute. |
ns | string | NamespaceURI of the attribute |
return | void |
public WriteStartElement ( string prefix, string localName, string ns ) : void | ||
prefix | string | Namespace prefix of the element. |
localName | string | LocalName of the element. |
ns | string | NamespaceURI of the element |
return | void |
public WriteString ( string text ) : void | ||
text | string | Text to write. |
return | void |
public WriteValue ( bool value ) : void | ||
value | bool | The value will be change. |
return | void |