| Syntax: | | [C#]
public void Append(string path, StreamType streamType, AppendSettings appendSettings);
public void Append(FileStream fileStream, StreamType streamType, AppendSettings appendSettings);
public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, AppendSettings appendSettings);
public void Append(string stringData, StringStreamType stringStreamType, AppendSettings appendSettings);
public void Append(string path, StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);
public void Append(FileStream fileStream, StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);
public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, LoadSettings loadSettings);
public void Append(string stringData, StringStreamType stringStreamType, LoadSettings loadSettings, AppendSettings appendSettings);
[Visual Basic]
Public Sub Append(ByVal path As String, ByVal streamType As StreamType, ByVal appendSettings As AppendSettings)
Public Sub Append(ByVal fileStream As FileStream, ByVal streamType As StreamType, ByVal appendSettings As AppendSettings)
Public Sub Append(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal appendSettings As AppendSettings)
Public Sub Append(ByVal stringData As String, ByVal stringStreamType As StringStreamType, ByVal appendSettings As AppendSettings)
Public Sub Append(ByVal path As String, ByVal streamType As StreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings)
Public Sub Append(ByVal fileStream As FileStream, ByVal streamType As StreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings)
Public Sub Append(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal loadSettings As LoadSettings)
Public Sub Append(ByVal stringData As String, ByVal stringStreamType As StringStreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings)
|