Discuss this help topic in SecureBlackbox Forum

TSBSAMLBindingTypes

Declared in     See also     


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


TSBSAMLBindingTypes defines a set of supported binding types used by SAML counterparts.

Declaration

[C#]
    TSBSAMLBindingTypes = int;
        const int sbtNone = 1;
        const int sbtSOAP = 2;
        const int sbtPAOS = 4;
        const int sbtRedirect = 8;
        const int sbtPOST = 16;
        const int sbtArtifact = 32;

[VB.NET]
    TSBSAMLBindingTypes As Integer
        Const sbtNone As Integer = 1
        Const sbtSOAP As Integer = 2
        Const sbtPAOS As Integer = 4
        Const sbtRedirect As Integer = 8
        Const sbtPOST As Integer = 16
        Const sbtArtifact As Integer = 32

[Pascal]
    TSBSAMLBindingTypes = set of TSBSAMLBindingType;

[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 TSBSAMLBindingTypes extends TSBBaseEnum {
        const sbtNone = 1;
        const sbtSOAP = 2;
        const sbtPAOS = 4;
        const sbtRedirect = 8;
        const sbtPOST = 16;
        const sbtArtifact = 32;
    }

[Java]
    not available

Possible values

Declared in

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

See also:     TSBSAMLBindingType    

Discuss this help topic in SecureBlackbox Forum