Add

Add(string)

Adds data of element in xml format to the DataContainer.

public DataContainer Add(string applicationDataXml)
Parameter Type Description
applicationDataXml String Contains data of element in xml format

Return Value

Returns the DataContainer with added data.

See Also


Add(XmlNode)

Adds data of element in xml format to the DataContainer.

public DataContainer Add(XmlNode node)
Parameter Type Description
node XmlNode Contains data of element in xml format

Return Value

Returns the DataContainer with added data.

See Also


Add(int, Namespace)

Adds empty DataContainer for element.

public DataContainer Add(int element, Namespace ns)
Parameter Type Description
element Int32 Name of the element
ns Namespace NameSpace of the element

Return Value

Returns empty DataContainer.

See Also


Add(int, string, Namespace)

Adds data of element to the DataContainer.

public DataContainer Add(int element, string value, Namespace ns)
Parameter Type Description
element Int32 Name of the element, whose data are contained in the data container.
value String Value of the element
ns Namespace NameSpace of the element, whose data are contained in the data container.

Return Value

Returns the DataContainer with added data.

See Also


Add(int, string, bool, Namespace)

Adds data of element to the DataContainer.

public DataContainer Add(int element, string value, bool binaryData, Namespace ns)
Parameter Type Description
element Int32 Name of the element, whose data are contained in the data container.
value String Value of the element
binaryData Boolean Specifies if data is binary.
ns Namespace NameSpace of the element, whose data are contained in the data container.

Return Value

Returns the DataContainer with added data.

See Also