Discuss this help topic in SecureBlackbox Forum
Specifies the type of the signature
Declaration
[C#]
TElXMLSignatureType = short;
const short xstDetached = 0;
const short xstEnveloping = 1;
const short xstEnveloped = 2;
[VB.NET]
TElXMLSignatureType As Short
Const xstDetached As Short = 0
Const xstEnveloping As Short = 1
Const xstEnveloped As Short = 2
[Pascal]
TElXMLSignatureType = (xstDetached, xstEnveloping, xstEnveloped);
[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 TElXMLSignatureType extends TSBBaseEnum {
const xstDetached = 0;
const xstEnveloping = 1;
const xstEnveloped = 2;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLSec
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum