Discuss this help topic in SecureBlackbox Forum

TSBSAMLPOSTBindingMode

Declared in     


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


This enum specifies the side on which POST binding is used: server or client.

Declaration

[C#]
    public enum TSBSAMLPOSTBindingMode { spmClient = 0, spmServer = 1 };

[VB.NET]
    Enum TSBSAMLPOSTBindingMode
        spmClient = 0
        spmServer = 1
    End Enum

[Pascal]
    TSBSAMLPOSTBindingMode = (spmClient, spmServer);

[C++]
    typedef uint8_t TSBSAMLPOSTBindingModeRaw;
    typedef enum { spmClient = 0, spmServer = 1 } TSBSAMLPOSTBindingMode;

[PHP]
    class TSBSAMLPOSTBindingMode extends TSBBaseEnum {
        const spmClient = 0;
        const spmServer = 1;
    }

[Java]
    public enum TSBSAMLPOSTBindingMode { spmClient, spmServer }

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