Discuss this help topic in SecureBlackbox Forum
Specifies, whether certain XAdES elements should be included to the electronic signature, or not.
Declaration
[C#]
TElXAdESIncludedProperty = short;
const short xipSignerRole = 0;
const short xipProductionPlace = 1;
const short xipSignerRoleV2 = 2;
const short xipProductionPlaceV2 = 3;
[VB.NET]
TElXAdESIncludedProperty As Short
Const xipSignerRole As Short = 0
Const xipProductionPlace As Short = 1
Const xipSignerRoleV2 As Short = 2
Const xipProductionPlaceV2 As Short = 3
[Pascal]
TElXAdESIncludedProperty = (xipSignerRole, xipProductionPlace);
[C++]
typedef uint8_t TElXAdESIncludedPropertyRaw;
typedef enum { xipSignerRole = 0, xipProductionPlace = 1, xipSignerRoleV2 = 2, xipProductionPlaceV2 = 3 } TElXAdESIncludedProperty;
typedef uint32_t TElXAdESIncludedPropertiesRaw;
typedef enum { f_xipSignerRole = 1, f_xipProductionPlace = 2, f_xipSignerRoleV2 = 4, f_xipProductionPlaceV2 = 8 } TElXAdESIncludedProperties;
[PHP]
class TElXAdESIncludedProperty extends TSBBaseEnum {
const xipSignerRole = 0;
const xipProductionPlace = 1;
const xipSignerRoleV2 = 2;
const xipProductionPlaceV2 = 3;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLAdESIntf
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum