Discuss this help topic in SecureBlackbox Forum

TElSAMLIdentityProvider.OnBeforeBindingUse

TElSAMLIdentityProvider     See also     


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


This event is fired before any binding is applied.

Declaration

[C#]
    event TSBSAMLBeforeBindingUseEvent OnBeforeBindingUse;
    delegate void TSBSAMLBeforeBindingUseEvent(Object Sender, TElSAMLBinding Binding);

[VB.NET]
    Event OnBeforeBindingUse As TSBSAMLBeforeBindingUseEvent
    Delegate Sub TSBSAMLBeforeBindingUseEvent(ByVal Sender As Object, ByVal Binding As TElSAMLBinding)

[Pascal]
    event OnBeforeBindingUse : TSBSAMLBeforeBindingUseEvent delegate FOnBeforeBindingUse;
    TSBSAMLBeforeBindingUseEvent = procedure(Sender : TObject; Binding : TElSAMLBinding) of object;

[C++]
    void get_OnBeforeBindingUse(TSBSAMLBeforeBindingUseEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnBeforeBindingUse(TSBSAMLBeforeBindingUseEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSAMLBeforeBindingUseEvent)(void * _ObjectData, TObjectHandle Sender, TElSAMLBindingHandle Binding);

[PHP]
    TSBSAMLBeforeBindingUseEvent|callable|NULL get_OnBeforeBindingUse()
    void set_OnBeforeBindingUse(TSBSAMLBeforeBindingUseEvent|callable|NULL $Value)
    callable TSBSAMLBeforeBindingUseEvent(TObject $Sender, TElSAMLBinding $Binding)

[Java]
    TSBSAMLBeforeBindingUseEvent getOnBeforeBindingUse();
    void setOnBeforeBindingUse(TSBSAMLBeforeBindingUseEvent Value);
    TSBSAMLBeforeBindingUseEvent.Callback OnBeforeBindingUse = new TSBSAMLBeforeBindingUseEvent.Callback() {
        public void TSBSAMLBeforeBindingUseEventCallback(TObject Sender, TElSAMLBinding Binding) {
            //...
        }
    }

Parameters

  • Binding - this parameter specifies binding options, and must be typecasted according to the type of binding used.

Description

This event is fired by TElSAMLIdentityProvider before any binding is applied, and allows to adjust binding options.

See also:     OnBindingXMLPrepared    

Discuss this help topic in SecureBlackbox Forum