Discuss this help topic in SecureBlackbox Forum

TElXMLSignatureTypes

Declared in     See also     


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


Declaration

[C#]
    TElXMLSignatureTypes = int;
        const int xstDetached = 1;
        const int xstEnveloping = 2;
        const int xstEnveloped = 4;

[VB.NET]
    TElXMLSignatureTypes As Integer
        Const xstDetached As Integer = 1
        Const xstEnveloping As Integer = 2
        Const xstEnveloped As Integer = 4

[Pascal]
    under development

[C++]
    typedef uint8_t TElXMLSignatureTypeRaw;
    typedef enum { xstDetached = 0, xstEnveloping = 1, xstEnveloped = 2 } TElXMLSignatureType;
    
    typedef uint32_t TElXMLSignatureTypesRaw;
    typedef enum { f_xstDetached = 1, f_xstEnveloping = 2, f_xstEnveloped = 4 } TElXMLSignatureTypes;

[PHP]
    class TElXMLSignatureTypes extends TSBBaseEnum {
        const xstDetached = 1;
        const xstEnveloping = 2;
        const xstEnveloped = 4;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBXMLSec
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBXMLSec
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbxmlsec.h

See also:     TElXMLSignatureType    

Discuss this help topic in SecureBlackbox Forum