Discuss this help topic in SecureBlackbox Forum

TElSAMLConditionsElement.AddCondition

TElSAMLConditionsElement     See also     


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


Adds a new condition to the list.

Declaration

[C#]
    int AddCondition(TElSAMLConditionAbstractType Cond);

[VB.NET]
    Function AddCondition(ByVal Cond As TElSAMLConditionAbstractType) As Integer

[Pascal]
    function AddCondition(Cond : TElSAMLConditionAbstractType) : integer;

[C++]
    int32_t AddCondition(TElSAMLConditionAbstractType &Cond);
    int32_t AddCondition(TElSAMLConditionAbstractType *Cond);

[PHP]
    integer AddCondition(TElSAMLConditionAbstractType $Cond)

[Java]
    int addCondition(TElSAMLConditionAbstractType Cond);

Parameters

  • Cond - the condition to be added to the list.

Return value

Returns the index of the newly added item in the list on success, and -1 on failure.

Description

Use this method to add a new condition to the list.

See also:     Conditions     AddCondition     RemoveCondition    

Discuss this help topic in SecureBlackbox Forum