LockType Enumeration

Summary
Defines the various flags that can be used to lock and unlock Multimedia features.
Syntax
C#
C++/CLI
public enum LockType 
public enum class LockType   
Members
ValueMemberDescription
0x00000001ComputerUnlocks the module at the computer level. Unlocking at the computer level should be avoided because it can cause unexpected behavior in other applications.
0x00000002ApplicationUnlocks the module for this instance of the application. This is the recommended value.
0x00000004ApplicationPathUnlocks the module for this particular application. Use this for unlocking support in a third party application (like Windows Media Player).
Remarks

The MultimediaSupport.UnlockModule and MultimediaSupport.LockModules methods use a parameter of this type to indicate how to unlock or lock multimedia features.

Example
C#
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; 
} 
Requirements

Target Platforms

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaFoundation Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.