Click or drag to resize

LOCKTYPE Enumeration

Indicates the type of locking requested for the specified range of bytes Maps to Windows' LOCKTYPE enumeration..

Namespace:  callback.ShellBoost.Core.WindowsShell
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
[FlagsAttribute]
public enum LOCKTYPE
Members
  Member nameValueDescription
LOCK_WRITE1 If this lock is granted, the specified range of bytes can be opened and read any number of times, but writing to the locked range is prohibited except for the owner that was granted this lock.
LOCK_EXCLUSIVE2 If this lock is granted, writing to the specified range of bytes is prohibited except by the owner that was granted this lock.
LOCK_ONLYONCE4 If this lock is granted, no other LOCK_ONLYONCE lock can be obtained on the range. Usually this lock type is an alias for some other lock type. Thus, specific implementations can have additional behavior associated with this lock type.
See Also