Discuss this help topic in SecureBlackbox Forum

TElCustomSimpleSSLClient.OnRenegotiationRequest

TElCustomSimpleSSLClient     See also     


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


This event is fired when renegotiation is requested.

Declaration

[C#]
    event TSBRenegotiationRequestEvent OnRenegotiationRequest;
    delegate void TSBRenegotiationRequestEvent(Object Sender, ref bool Allow);

[VB.NET]
    Event OnRenegotiationRequest As TSBRenegotiationRequestEvent
    Delegate Sub TSBRenegotiationRequestEvent(ByVal Sender As Object, ByRef Allow As Boolean)

[Pascal]
    property OnRenegotiationRequest : TSBRenegotiationRequestEvent;
    TSBRenegotiationRequestEvent = procedure(Sender : TObject; var Allow : boolean) of object;

[C++]
    void get_OnRenegotiationRequest(TSBRenegotiationRequestEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnRenegotiationRequest(TSBRenegotiationRequestEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBRenegotiationRequestEvent)(void * _ObjectData, TObjectHandle Sender, int8_t &Allow);

[PHP]
    TSBRenegotiationRequestEvent|callable|NULL get_OnRenegotiationRequest()
    void set_OnRenegotiationRequest(TSBRenegotiationRequestEvent|callable|NULL $Value)
    callable TSBRenegotiationRequestEvent(TObject $Sender, bool &$Allow)

[Java]
    TSBRenegotiationRequestEvent getOnRenegotiationRequest();
    void setOnRenegotiationRequest(TSBRenegotiationRequestEvent Value);
    TSBRenegotiationRequestEvent.Callback OnRenegotiationRequest = new TSBRenegotiationRequestEvent.Callback() {
        public void TSBRenegotiationRequestEventCallback(TObject Sender, TSBBoolean Allow) {
            //...
        }
    }

Parameters

  • Allow - Specifies whether to allow renegotiation.

Description

    This event is fired by TElSSLClient when renegotiation is requested by the server.

See also:     RenegotiationAttackPreventionMode    

Discuss this help topic in SecureBlackbox Forum