type
One of the LockType enumeration values that specify the level at which the locking operation will be performed. It should be the same value passed to UnlockModule.
appId
If type is set to LockType.Application or LockType.Computer, appId should be the application ID; a unique ID of the calling application. The caller is responsible for uniqueness of this ID. It is recommended to use the full path of the application.
If type is set to LockType.ApplicationPath, appId should be the application full path of the application (the long version, not the short 8.3 version of the path).
This parameter cannot be NULL (empty).
You must call LockModules:
using Leadtools;
using Leadtools.MediaFoundation;
using LeadtoolsMediaFoundationExamples.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 feature
Leadtools.MediaFoundation.Common.MultimediaSupport.UnlockModule(pszKey,
Leadtools.MediaFoundation.Common.LockType.Application,
pszAppId);
}
catch
{
return;
}
// [use the multimedia feature here]
// lock the multimedia feature before exiting the app
try
{
Leadtools.MediaFoundation.Common.MultimediaSupport.LockModules(Leadtools.MediaFoundation.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