Discuss this help topic in SecureBlackbox Forum
Specifies canonicalization method.
Declaration
[C#/Java]
TElXMLCanonicalizationMethod = short;
const short xcmNone = 0;
const short xcmCanon = 1;
const short xcmCanonComment = 2;
const short xcmExclCanon = 3;
const short xcmExclCanonComment = 4;
const short xcmMinCanon = 5;
const short xcmCanon_v1_1 = 6;
const short xcmCanonComment_v1_1 = 7;
[VB.NET]
TElXMLCanonicalizationMethod As SmallInt
Const xcmNone As SmallInt = 0
Const xcmCanon As SmallInt = 1
Const xcmCanonComment As SmallInt = 2
Const xcmExclCanon As SmallInt = 3
Const xcmExclCanonComment As SmallInt = 4
Const xcmMinCanon As SmallInt = 5
Const xcmCanon_v1_1 As SmallInt = 6
Const xcmCanonComment_v1_1 As SmallInt = 7
[Pascal]
TElXMLCanonicalizationMethod = (xcmNone, xcmCanon, xcmCanonComment, xcmExclCanon, xcmExclCanonComment, xcmMinCanon, xcmCanon_v1_1, xcmCanonComment_v1_1);
[C++]
typedef uint8_t TElXMLCanonicalizationMethodRaw;
typedef enum { xcmNone = 0, xcmCanon = 1, xcmCanonComment = 2, xcmExclCanon = 3, xcmExclCanonComment = 4, xcmMinCanon = 5, xcmCanon_v1_1 = 6, xcmCanonComment_v1_1 = 7 } TElXMLCanonicalizationMethod;
Description
Possible values:
Declared in
.NET:
- Namespace: SBXMLDefs
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum