Discuss this help topic in SecureBlackbox Forum

TSBSAMLAccessLevel

Declared in     


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


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:
  • Unit: SBXMLSAMLCommon
Java:
  • Package: SecureBlackbox.SAMLCommon.jar
C++:
  • sbxmlsamlcommon.h

Discuss this help topic in SecureBlackbox Forum