Discuss this help topic in SecureBlackbox Forum
Defines possible WebDAV principal types.
Declaration
[C#]
public enum TSBPrincipalType { wptNone = 0, wptAll = 1, wptAuthenticated = 2, wptUnauthenticated = 3, wptSelf = 4, wptHref = 5, wptProperty = 6, wptPropertyOwner = 7, wptPropertyGroup = 8 };
[VB.NET]
Enum TSBPrincipalType
wptNone = 0
wptAll = 1
wptAuthenticated = 2
wptUnauthenticated = 3
wptSelf = 4
wptHref = 5
wptProperty = 6
wptPropertyOwner = 7
wptPropertyGroup = 8
End Enum
[Pascal]
TSBPrincipalType = (wptNone, wptAll, wptAuthenticated, wptUnauthenticated, wptSelf, wptHref, wptProperty, wptPropertyOwner, wptPropertyGroup);
[C++]
typedef uint8_t TSBPrincipalTypeRaw;
typedef enum { wptNone = 0, wptAll = 1, wptAuthenticated = 2, wptUnauthenticated = 3, wptSelf = 4, wptHref = 5, wptProperty = 6, wptPropertyOwner = 7, wptPropertyGroup = 8 } TSBPrincipalType;
[PHP]
class TSBPrincipalType extends TSBBaseEnum {
const wptNone = 0;
const wptAll = 1;
const wptAuthenticated = 2;
const wptUnauthenticated = 3;
const wptSelf = 4;
const wptHref = 5;
const wptProperty = 6;
const wptPropertyOwner = 7;
const wptPropertyGroup = 8;
}
[Java]
public enum TSBPrincipalType { wptNone, wptAll, wptAuthenticated, wptUnauthenticated, wptSelf, wptHref, wptProperty, wptPropertyOwner, wptPropertyGroup }
Possible values
Declared in
.NET:
- Namespace: SBWebDAVCommon
- Assembly: SecureBlackbox.DAVCommon
VCL:Java:
- Package: SecureBlackbox.DAVCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum