Gets a value that indicates whether the asynchronous operation has completed.
public bool IsCompleted {get;}
Public ReadOnly Property IsCompleted As Boolean
public:
property bool IsCompleted {
bool get();
}
true if the operation is complete; otherwise, false.
Executes an ansynchronous method.
Imports Leadtools.Dicom.AddIn
<TestMethod()> _
Public Sub ThreadFunction()
For i As Integer = 0 To 999
Console.WriteLine("Count: {0}", i)
Next i
End Sub
Public Sub TestExecute()
Dim r As AsyncResult = AsyncHelper.Execute(New Action(AddressOf ThreadFunction))
'
' Wait 1 second for the thread to finish.
'
r.Wait(1000)
If r.IsCompleted Then
Console.WriteLine("Completed")
End If
End Sub
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");
}
Products |
Support |
Feedback: IsCompleted Property - Leadtools.Dicom.AddIn |
Introduction |
Help Version 19.0.2017.3.22
|
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.