Discuss this help topic in SecureBlackbox Forum

TElXAdESIncludedProperty

Declared in     


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


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

[Java]
    not available

Possible values

Declared in

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

Discuss this help topic in SecureBlackbox Forum