Interface IXDLSContentWriter
Summary description for IXDLSContentWriter.
Namespace: Syncfusion.DocIO.DLS.XML
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public interface IXDLSContentWriter
Properties
InnerWriter
Gets the inner writer.
Declaration
XmlWriter InnerWriter { get; }
Property Value
Type | Description |
---|---|
System.Xml.XmlWriter | The inner writer. |
Methods
WriteChildBinaryElement(String, Byte[])
Writes the child binary element.
Declaration
void WriteChildBinaryElement(string name, byte[] value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.Byte[] | value | The value. |
WriteChildElement(String, Object)
Writes the child element.
Declaration
void WriteChildElement(string name, object value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.Object | value | The value. |
WriteChildRefElement(String, Int32)
Writes the child ref element.
Declaration
void WriteChildRefElement(string name, int refToElement)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.Int32 | refToElement | The ref to element. |
WriteChildStringElement(String, String)
Writes the child string element.
Declaration
void WriteChildStringElement(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.String | value | The value. |