Discuss this help topic in SecureBlackbox Forum
Specifies the type of XML text.
Declaration
[C#]
TElXMLTextType = short;
const short ttNormal = 0;
const short ttBase64 = 1;
[VB.NET]
TElXMLTextType As Short
Const ttNormal As Short = 0
Const ttBase64 As Short = 1
[Pascal]
TElXMLTextType = (ttNormal, ttBase64);
[C++]
typedef uint8_t TElXMLTextTypeRaw;
typedef enum { ttNormal = 0, ttBase64 = 1 } TElXMLTextType;
[PHP]
class TElXMLTextType extends TSBBaseEnum {
const ttNormal = 0;
const ttBase64 = 1;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLDefs
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum