Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.OnItemValidated

TElCMSSignature     See also     


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


This event is fired during signature validation.

Declaration

[C#]
    event TSBCMSItemValidatedEvent OnItemValidated;
    delegate void TSBCMSItemValidatedEvent(Object Sender, TSBCMSItemType ItemType, Object Item, ref bool Valid);

[VB.NET]
    Event OnItemValidated As TSBCMSItemValidatedEvent
    Delegate Sub TSBCMSItemValidatedEvent(ByVal Sender As Object, ByVal ItemType As TSBCMSItemType, ByVal Item As Object, ByRef Valid As Boolean)

[Pascal]
    property OnItemValidated: TSBCMSItemValidatedEvent;
    TSBCMSItemValidatedEvent = procedure(Sender : TObject; ItemType : TSBCMSItemType; Item : TObject; var Valid : boolean) of object;

[C++]
    void get_OnItemValidated(TSBCMSItemValidatedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnItemValidated(TSBCMSItemValidatedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBCMSItemValidatedEvent)(void * _ObjectData, TObjectHandle Sender, TSBCMSItemTypeRaw ItemType, TObjectHandle Item, int8_t &Valid);

[PHP]
    TSBCMSItemValidatedEvent|callable|NULL get_OnItemValidated()
    void set_OnItemValidated(TSBCMSItemValidatedEvent|callable|NULL $Value)
    callable TSBCMSItemValidatedEvent(TObject $Sender, integer $ItemType, TObject $Item, bool &$Valid)

[Java]
    TSBCMSItemValidatedEvent getOnItemValidated();
    void setOnItemValidated(TSBCMSItemValidatedEvent Value);
    TSBCMSItemValidatedEvent.Callback OnItemValidated = new TSBCMSItemValidatedEvent.Callback() {
        public void TSBCMSItemValidatedEventCallback(TObject Sender, TSBCMSItemType ItemType, TObject Item, TSBBoolean Valid) {
            //...
        }
    }

Parameters

  • ItemType - type of the item which has been validated
  • Item - the item which has been validated
  • Valid - validation result

Possible item types:

Description

    This event is fired by TElCMSSignature during signature validation in order to report that an item has been validated. Application could change the validation result through the Valid parameter.

See also:     Validate    

Discuss this help topic in SecureBlackbox Forum