Discuss this help topic in SecureBlackbox Forum
Defines access levels provided to the protected SAML resources.
Declaration
[C#]
public enum TSBSAMLAccessLevel { salDomain = 0, salExactURL = 1 };
[VB.NET]
Enum TSBSAMLAccessLevel
salDomain = 0
salExactURL = 1
End Enum
[Pascal]
TSBSAMLAccessLevel = (salDomain, salExactURL);
[C++]
typedef uint8_t TSBSAMLAccessLevelRaw;
typedef enum { salDomain = 0, salExactURL = 1 } TSBSAMLAccessLevel;
[PHP]
class TSBSAMLAccessLevel extends TSBBaseEnum {
const salDomain = 0;
const salExactURL = 1;
}
[Java]
public enum TSBSAMLAccessLevel { salDomain, salExactURL }
Possible values
Declared in
.NET:
- Namespace: SBXMLSAMLCommon
- Assembly: SecureBlackbox.SAMLCommon
VCL:Java:
- Package: SecureBlackbox.SAMLCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum