Discuss this help topic in SecureBlackbox Forum
Defines possible scopes for WebDAV locks.
Declaration
[C#/Java]
enum TSBWebDavLockScope { wlsExclusive = 0, wlsShared = 1 };
[VB.NET]
Enum TSBWebDavLockScope
wlsExclusive = 0
wlsShared = 1
End Enum
[Pascal]
TSBWebDavLockScope = (wlsExclusive, wlsShared);
[C++]
typedef uint8_t TSBWebDavLockScopeRaw;
typedef enum { wlsExclusive = 0, wlsShared = 1 } TSBWebDavLockScope;
Description
Possible values:
Declared in
.NET:
- Namespace: SBWebDavCommon
- Assembly: SecureBlackbox.WebDav
VCL:Java:
- Package: SecureBlackbox.WebDav.jar
C++:
Discuss this help topic in SecureBlackbox Forum