Discuss this help topic in SecureBlackbox Forum

TElSAMLCustomOneTimeUseCache.Find

TElSAMLCustomOneTimeUseCache     


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


Checks whether the given assertion is cached.

Declaration

[C#]
    bool Find(TElSAMLAssertionElement Assertion);

[VB.NET]
    Function Find(ByVal Assertion As TElSAMLAssertionElement) As Boolean

[Pascal]
    function Find(Assertion : TElSAMLAssertionElement) : boolean; virtual;

[C++]
    bool Find(TElSAMLAssertionElement &Assertion);
    bool Find(TElSAMLAssertionElement *Assertion);

[PHP]
    bool Find(TElSAMLAssertionElement $Assertion)

[Java]
    boolean find(TElSAMLAssertionElement Assertion);

Parameters

  • Assertion - the assertion under question.

Return value

Returns true if the given assertion is already cached, and false otherwise.

Description

Use this method to check if the given assertion is present in the internal storage.

Discuss this help topic in SecureBlackbox Forum