Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLSec
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum