Discuss this help topic in SecureBlackbox Forum

TElXMLTextType

Declared in     


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


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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBXMLDefs
  • Assembly: SecureBlackbox.XML
VCL:
  • Unit: SBXMLDefs
Java:
  • Package: SecureBlackbox.XML.jar
C++:
  • sbxmldefs.h

Discuss this help topic in SecureBlackbox Forum