Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.OnBeforeRequestSigning

TElDropboxDataStorage     See also     


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


This event is fired before signing a request.

Declaration

[C#]
    event TSBDropboxBeforeRequestSigningEvent OnBeforeRequestSigning;
    delegate void TSBDropboxBeforeRequestSigningEvent(Object Sender, TElHTTPSClient HttpClient);

[VB.NET]
    Event OnBeforeRequestSigning As TSBDropboxBeforeRequestSigningEvent
    Delegate Sub TSBDropboxBeforeRequestSigningEvent(ByVal Sender As Object, ByVal HttpClient As TElHTTPSClient)

[Pascal]
    property OnBeforeRequestSigning : TSBDropboxBeforeRequestSigningEvent;
    TSBDropboxBeforeRequestSigningEvent = procedure(Sender : TObject; HttpClient : TElHTTPSClient) of object;

[C++]
    void get_OnBeforeRequestSigning(TSBDropboxBeforeRequestSigningEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnBeforeRequestSigning(TSBDropboxBeforeRequestSigningEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBDropboxBeforeRequestSigningEvent)(void * _ObjectData, TObjectHandle Sender, TElHTTPSClientHandle HttpClient);

[PHP]
    TSBDropboxBeforeRequestSigningEvent|callable|NULL get_OnBeforeRequestSigning()
    void set_OnBeforeRequestSigning(TSBDropboxBeforeRequestSigningEvent|callable|NULL $Value)
    callable TSBDropboxBeforeRequestSigningEvent(TObject $Sender, TElHTTPSClient $HttpClient)

[Java]
    TSBDropboxBeforeRequestSigningEvent getOnBeforeRequestSigning();
    void setOnBeforeRequestSigning(TSBDropboxBeforeRequestSigningEvent Value);
    TSBDropboxBeforeRequestSigningEvent.Callback OnBeforeRequestSigning = new TSBDropboxBeforeRequestSigningEvent.Callback() {
        public void TSBDropboxBeforeRequestSigningEventCallback(TObject Sender, TElHTTPSClient HttpClient) {
            //...
        }
    }

Parameters

  • HttpClient - the HTTPS client used to access the storage.

Description

    This event is fired by TElDropboxDataStorage before signing of an HTTP request; it allows to tune up the parameters of the HTTP client used to send the request.

See also:     SignatureMethod    

Discuss this help topic in SecureBlackbox Forum