Wait for a file to be created.

Namespace:  bioPDF.PdfWriter
Assembly:  bioPDF.PdfWriter (in bioPDF.PdfWriter.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function WaitForFile ( _
	path As String, _
	timeoutMilliseconds As Integer _
) As Boolean
C#
public static bool WaitForFile(
	string path,
	int timeoutMilliseconds
)
Visual C++
public:
static bool WaitForFile(
	String^ path, 
	int timeoutMilliseconds
)
JavaScript
bioPDF.PdfWriter.PdfUtil.waitForFile = function(path, timeoutMilliseconds);

Parameters

path
Type: System..::.String
Path of file to wait for.
timeoutMilliseconds
Type: System..::.Int32
Timeout in milliseconds to wait.

Return Value

True if the file is present before the timeout

See Also