Discuss this help topic in SecureBlackbox Forum

TSBSAMLClientProfiles

Declared in     See also     


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


TSBSAMLClientProfiles defines a bit mask of zero or more options defined by TSBSAMLClientProfile enum.

Declaration

[C#]
    TSBSAMLClientProfiles = int;
        const int scpWebSSO = 1;

[VB.NET]
    TSBSAMLClientProfiles As Integer
        Const scpWebSSO As Integer = 1

[Pascal]
    TSBSAMLClientProfiles = set of TSBSAMLClientProfile;

[C++]
    typedef uint8_t TSBSAMLClientProfileRaw;
    typedef enum { scpWebSSO = 0 } TSBSAMLClientProfile;
    
    typedef uint32_t TSBSAMLClientProfilesRaw;
    typedef enum { f_scpWebSSO = 1 } TSBSAMLClientProfiles;

[PHP]
    class TSBSAMLClientProfiles extends TSBBaseEnum {
        const scpWebSSO = 1;
    }

[Java]
    not available

Possible values

Declared in

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

See also:     TSBSAMLClientProfile    

Discuss this help topic in SecureBlackbox Forum