public static class AsyncHelper
public ref class AsyncHelper abstract sealed
Executes an asynchronous method.
using Leadtools.Dicom.AddIn;
public void ThreadFunction()
{
for (int i = 0; i < 1000; i++)
{
Console.WriteLine("Count: {0}", i);
}
}
public void TestExecute()
{
AsyncResult r = AsyncHelper.Execute(new Action(ThreadFunction));
//
// Wait 1 second for the thread to finish.
//
r.Wait(1000);
if (r.IsCompleted)
Console.WriteLine("Completed");
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document