Note
As of v21 the LEADTOOLS Multimedia toolkit has been updated to use a seamless license mechanism and any new development must use it. The new licensing mechanism uses RasterSupport.SetLicense. For a step-by-step tutorial on a .NET platform, refer to Add References and Set a License.
The UnlockModule mechanism is still supported in v21.
public enum LockType public enum class LockType   | Value | Member | Description | 
|---|---|---|
| 0x00000001 | Computer | Unlocks the module at the computer level. Unlocking at the computer level should be avoided because it can cause unexpected behavior in other applications. | 
| 0x00000002 | Application | Unlocks the module for this instance of the application. This is the recommended value. | 
| 0x00000004 | ApplicationPath | Unlocks the module for this particular application. Use this for unlocking support in a third party application (like Windows Media Player). | 
The MultimediaSupport.UnlockModule and MultimediaSupport.LockModules methods use a parameter of this type to indicate how to unlock or lock multimedia features.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public void MultimediaSupportExample(){// pszKey is a string containing the serial number. It is defined like this:// string pszKey = "MySerial";string pszAppId = "My Test Application";try{// unlock the multimedia featureLeadtools.Multimedia.Common.MultimediaSupport.UnlockModule(pszKey,Leadtools.Multimedia.Common.LockType.Application,pszAppId);}catch{return;}// [use the multimedia feature here]// lock the multimedia feature before exiting the apptry{Leadtools.Multimedia.Common.MultimediaSupport.LockModules(Leadtools.Multimedia.Common.LockType.Application,pszAppId);}catch{return;}_result = true;}
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
