Discuss this help topic in SecureBlackbox Forum
Specifies canonicalization method.
Declaration
[C#]
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 Short
Const xcmNone As Short = 0
Const xcmCanon As Short = 1
Const xcmCanonComment As Short = 2
Const xcmExclCanon As Short = 3
Const xcmExclCanonComment As Short = 4
Const xcmMinCanon As Short = 5
Const xcmCanon_v1_1 As Short = 6
Const xcmCanonComment_v1_1 As Short = 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;
[PHP]
class TElXMLCanonicalizationMethod extends TSBBaseEnum {
const xcmNone = 0;
const xcmCanon = 1;
const xcmCanonComment = 2;
const xcmExclCanon = 3;
const xcmExclCanonComment = 4;
const xcmMinCanon = 5;
const xcmCanon_v1_1 = 6;
const xcmCanonComment_v1_1 = 7;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLDefs
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum