Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.AddCountersignature

TElCMSSignature     See also     


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


This method adds a countersignature to the list.

Declaration

[C#]
    int AddCountersignature();
    int AddCountersignature(byte[] Signature);

[VB.NET]
    Function AddCountersignature() As Integer
    Function AddCountersignature(ByVal Signature As Byte()) As Integer

[Pascal]
    function AddCountersignature: integer;

[C++]
    int32_t AddCountersignature();
    int32_t AddCountersignature(const std::vector<uint8_t> &Signature);

[PHP]
    integer AddCountersignature()
    integer AddCountersignature(array of byte|string|NULL $Signature)

[Java]
    int addCountersignature(byte[] Signature);
    int addCountersignature();

Parameters

  • Signature - ...

Return value

    Index of the newly added item in the list.

Description

    Use this method to add a new countersignature to the Countersignatures list.

See also:     ClearCountersignatures     RemoveCountersignature    

Discuss this help topic in SecureBlackbox Forum