Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBSAMLContactType { sctTechnical = 0, sctSupport = 1, sctAdministrative = 2, sctBilling = 3, sctOther = 4 };
[VB.NET]
Enum TSBSAMLContactType
sctTechnical = 0
sctSupport = 1
sctAdministrative = 2
sctBilling = 3
sctOther = 4
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBSAMLContactTypeRaw;
typedef enum { sctTechnical = 0, sctSupport = 1, sctAdministrative = 2, sctBilling = 3, sctOther = 4 } TSBSAMLContactType;
[PHP]
class TSBSAMLContactType extends TSBBaseEnum {
const sctTechnical = 0;
const sctSupport = 1;
const sctAdministrative = 2;
const sctBilling = 3;
const sctOther = 4;
}
[Java]
public enum TSBSAMLContactType { sctTechnical, sctSupport, sctAdministrative, sctBilling, sctOther }
Possible values
Declared in
.NET:
- Namespace: SBXMLSAMLMetadata
- Assembly: SecureBlackbox.SAMLCommon
VCL:Java:
- Package: SecureBlackbox.SAMLCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum