Discuss this help topic in SecureBlackbox Forum

TElXAdESProcessor.OnStoreCRL

TElXAdESProcessor     See also     


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


This event is fired when a CRL URI is needed.

Declaration

[C#]
    event TSBXAdESStoreCRLEvent OnStoreCRL;
    delegate void TSBXAdESStoreCRLEvent(Object Sender, TElCertificateRevocationList CRL, ref string URI);

[VB.NET]
    Event OnStoreCRL As TSBXAdESStoreCRLEvent
    Delegate Sub TSBXAdESStoreCRLEvent(ByVal Sender As Object, ByVal CRL As TElCertificateRevocationList, ByRef URI As String)

[Pascal]
    property OnStoreCRL : TSBXAdESStoreCRLEvent;
    TSBXAdESStoreCRLEvent = procedure(Sender : TObject; CRL : TElCertificateRevocationList; var URI : WideString) of object;

[C++]
    void get_OnStoreCRL(TSBXAdESStoreCRLEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnStoreCRL(TSBXAdESStoreCRLEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBXAdESStoreCRLEvent)(void * _ObjectData, TObjectHandle Sender, TElCertificateRevocationListHandle CRL, sb_char16_t * pcURI, int32_t &szURI);

[PHP]
    TSBXAdESStoreCRLEvent|callable|NULL get_OnStoreCRL()
    void set_OnStoreCRL(TSBXAdESStoreCRLEvent|callable|NULL $Value)
    callable TSBXAdESStoreCRLEvent(TObject $Sender, TElCertificateRevocationList $CRL, string &$URI)

[Java]
    TSBXAdESStoreCRLEvent getOnStoreCRL();
    void setOnStoreCRL(TSBXAdESStoreCRLEvent Value);
    TSBXAdESStoreCRLEvent.Callback OnStoreCRL = new TSBXAdESStoreCRLEvent.Callback() {
        public String TSBXAdESStoreCRLEventCallback(TObject Sender, TElCertificateRevocationList CRL) {
            //...
        }
    }

Parameters

  • CRL - the CRL which reference is needed.
  • URI - specifies the URI of the CRL.
  • pcURI - specifies the URI of the CRL.
  • szURI - the length of pcURI.

Description

    This event is fired by TElXAdESProcessor when it needs to store a revocation info reference. User should provide the URI of the CRL via the corresponding parameter.

Discuss this help topic in SecureBlackbox Forum