Defines the various flags that can be used to lock and unlock Multimedia features.
public enum LockType
Public Enum LockType
public enum class LockType
Members
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.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;
}
Imports Leadtools
Imports Leadtools.MediaFoundation
Imports LeadtoolsMediaFoundationExamples.Fixtures
Public _result As Boolean = False
Public Sub MultimediaSupportExample()
' pszKey is a string containing the serial number. It is defined like this:
' Private pszKey As String = "MyString"
Dim pszAppId As String = "My Test Application"
Try
' unlock the multimedia feature
Leadtools.MediaFoundation.Common.MultimediaSupport.UnlockModule(pszKey,
Leadtools.MediaFoundation.Common.LockType.Application,
pszAppId)
Catch
Exit Sub
End Try
' [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)
_result = True
Catch e1 As Exception
_result = False
End Try
End Sub
Products |
Support |
Feedback: LockType Enumeration - Leadtools.MediaFoundation |
Introduction |
Help Version 19.0.2017.6.16
|
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.