Discuss this help topic in SecureBlackbox Forum

TSBWebDavLockScope

Declared in     


Filter: C#/Java  VB.NET  Pascal  C++  


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:
  • Unit: SBWebDavCommon
Java:
  • Package: SecureBlackbox.WebDav.jar
C++:
  • sbwebdavcommon.h

Discuss this help topic in SecureBlackbox Forum