Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.IsPresent

TElCustomCertStorage     See also     


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


Checks whether certificate is already present in storage

Declaration

[C#]
    bool IsPresent(TElX509Certificate Certificate);

[VB.NET]
    Function IsPresent(ByVal Certificate As TElX509Certificate) As Boolean

[Pascal]
    function IsPresent(Certificate : TElX509Certificate) : boolean;

[C++]
    bool IsPresent(TElX509Certificate &Certificate);
    bool IsPresent(TElX509Certificate *Certificate);

[PHP]
    bool IsPresent(TElX509Certificate $Certificate)

[Java]
    boolean isPresent(TElX509Certificate Certificate);

Parameters

  • Certificate - Certificate object whose presence is checked

Return value

    True if certificate is already present in storage.
    False otherwise.

Description

    Use this method to check whether certificate is already present in storage. This method returns true of IndexOf method returns >= 0.

See also:     Certificates     IndexOf    

Discuss this help topic in SecureBlackbox Forum