Event that occurs when the factory finishes loading the document successfully or otherwise.
public event EventHandler<LoadAsyncCompletedEventArgs> Completed public:event EventHandler<Leadtools::Documents::LoadAsyncCompletedEventArgs^>^ Completed
def Completed(sender,e): # sender: LoadDocumentAsyncOptions e: LoadAsyncCompletedEventArgs Completed will occur once when the factory finishes loading the document successfully or otherwise. It uses the LoadAsyncCompletedEventArgs event data class that is populated with the following:
| Member | Value | 
|---|---|
| 
 true if the user has aborted the current operation, false otherwise..  | 
|
| 
 The same value originally set by the user in LoadDocumentAsyncOptions.UserState.  | 
|
| 
 The error object thrown if any.  | 
|
| 
 The location of the document loaded. This is the uri value passed to LoadFromUriAsync  | 
|
| 
 The result LEADDocument object if the load operation was successful, null otherwise  | 
using Leadtools;using Leadtools.Caching;using Leadtools.Document;public void DocumentFactoryLoadFromUriAsyncExample(){AutoResetEvent finished = null;EventHandler<LoadAsyncCompletedEventArgs> completed = null;// LoadAsyncProgressEventArgs referenceEventHandler<LoadAsyncProgressEventArgs> progress = null;completed = (sender, e) =>{//Assert((int)e.UserState == 1);if (e.Cancelled)Console.WriteLine("Canceled");if (e.Error != null)Console.WriteLine("Error:" + e.Error.Message);if (e.Document == null)Console.WriteLine("Document is null");var thisOptions = sender as LoadDocumentAsyncOptions;thisOptions.Completed -= completed;if (e.Document != null){PrintOutDocumentInfo(e.Document);}finished.Set();Console.WriteLine("Done");};progress = (sender, f) =>{Console.WriteLine(f.BytesReceived);Console.WriteLine(f.IsCancelPending);Console.WriteLine(f.TotalBytesToReceive);var thisOptions = sender as LoadDocumentAsyncOptions;thisOptions.Progress -= progress;};var options = new LoadDocumentAsyncOptions();options.Completed += completed;finished = new AutoResetEvent(false);DocumentFactory.LoadFromUriAsync(new Uri("http://localhost/Leadtools.pdf"), options);finished.WaitOne();}
import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import java.net.URI;import java.net.URISyntaxException;import java.util.Calendar;import org.junit.*;import org.junit.runner.JUnitCore;import org.junit.runner.Result;import org.junit.runner.notification.Failure;import static org.junit.Assert.*;import leadtools.*;import leadtools.caching.*;import leadtools.document.*;// LOAD FROM URI ASYNC DOES NOT EXIST
| Parameter | Type | Description | 
|---|---|---|
| sender | object | The source of the event. | 
| e | LoadAsyncCompletedEventArgs | The event data. | 
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
