[This is preliminary documentation and is subject to change.]

Download a document to the browser. This method sets appropriate parameters so that the file can be downloaded to the browser.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static void Download(
	string fileName,
	char[] buf
)
Visual Basic (Declaration)
Public Shared Sub Download ( _
	fileName As String, _
	buf As Char() _
)
Visual C++
public:
static void Download(
	String^ fileName, 
	array<wchar_t>^ buf
)

Parameters

fileName
Type: System..::.String
the full path name of the file on the local machine.
buf
Type: array<System..::.Char>[]()[]
The content of the file as a string array.

See Also