Discuss this help topic in SecureBlackbox Forum

TSBSAMLBindingType

Declared in     


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


TSBSAMLBindingType defines SAML bindings used in SecureBlackbox.

Declaration

[C#]
    TSBSAMLBindingType = short;
        const short sbtNone = 0;
        const short sbtSOAP = 1;
        const short sbtPAOS = 2;
        const short sbtRedirect = 3;
        const short sbtPOST = 4;
        const short sbtArtifact = 5;

[VB.NET]
    TSBSAMLBindingType As Short
        Const sbtNone As Short = 0
        Const sbtSOAP As Short = 1
        Const sbtPAOS As Short = 2
        Const sbtRedirect As Short = 3
        Const sbtPOST As Short = 4
        Const sbtArtifact As Short = 5

[Pascal]
    TSBSAMLBindingType = (sbtNone, sbtSOAP, sbtPAOS, sbtRedirect, sbtPOST, sbtArtifact);

[C++]
    typedef uint8_t TSBSAMLBindingTypeRaw;
    typedef enum { sbtNone = 0, sbtSOAP = 1, sbtPAOS = 2, sbtRedirect = 3, sbtPOST = 4, sbtArtifact = 5 } TSBSAMLBindingType;
    
    typedef uint32_t TSBSAMLBindingTypesRaw;
    typedef enum { f_sbtNone = 1, f_sbtSOAP = 2, f_sbtPAOS = 4, f_sbtRedirect = 8, f_sbtPOST = 16, f_sbtArtifact = 32 } TSBSAMLBindingTypes;

[PHP]
    class TSBSAMLBindingType extends TSBBaseEnum {
        const sbtNone = 0;
        const sbtSOAP = 1;
        const sbtPAOS = 2;
        const sbtRedirect = 3;
        const sbtPOST = 4;
        const sbtArtifact = 5;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBXMLSAMLBind
  • Assembly: SecureBlackbox.SAMLCommon
VCL:
  • Unit: SBXMLSAMLBind
Java:
  • Package: SecureBlackbox.SAMLCommon.jar
C++:
  • sbxmlsamlbind.h

Discuss this help topic in SecureBlackbox Forum