TypedXML Constructor Method

Initializes a new instance of the TypedXML class

public TypedXML(

long size

);

public TypedXML(

string str

);

 

Remarks

This method calls the construtor of TypedBuffer to allocated an unmanaged typed buffer of type “XML” with a size specified by argument size or str.Length property.

 

TypedXML.GetXMLText Method

Gets the text string contained in a typed XML buffer.

public string GetXMLText();

 

Remarks

 

TypedXML.SetXMLText Method

Set a string to a typed XML buffer as its text string.

public int SetXMLText(

string text

);

 

Remarks