PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Writes the data from a DataTable to a file.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[]
public static void WriteBinaryData(
	string path,
	 data,
	int row
)
Visual Basic (Declaration)Copy imageCopy Code
<> _
Public Shared Sub WriteBinaryData ( _
	path As , _
	data As , _
	row As Integer _
)

Parameters

path
String
The path.
data
SXMLDataTable
The DataTable with the binary data that will be written to disk. This should be a DataTable with at least the following Columns: ContentType (MIME type), Bytes (byte array)
row
Int32
The row number.

See Also

Advanced