Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorage.OnBeforeRequestSigning

TElWinAzureDataStorage     


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


This event is fired before signing the HTTP request.

Declaration

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

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

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

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

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

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

Parameters

  • HttpClient - the HTTPS client which is used to send the request.

Description

    This event is fired by TElWinAzureDataStorage before signing the HTTP request that will be sent to the server.

Discuss this help topic in SecureBlackbox Forum