Discuss this help topic in SecureBlackbox Forum

TElAlgorithmIdentifier.Equals

TElAlgorithmIdentifier     See also     


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


Compares algorithm identifiers.

Declaration

[C#]
    bool Equals(TElAlgorithmIdentifier Algorithm);
    bool Equals(Object obj);

[VB.NET]
    Function Equals(ByVal Algorithm As TElAlgorithmIdentifier) As Boolean
    Function Equals(ByVal obj As Object) As Boolean

[Pascal]
    function Equals(Algorithm : TElAlgorithmIdentifier) : boolean; reintroduce; virtual;
    function Equals(Obj : TObject) : boolean; override;

[C++]
    bool Equals(TElAlgorithmIdentifier &Algorithm);
    bool Equals(TElAlgorithmIdentifier *Algorithm);

[PHP]
    bool Equals(TElAlgorithmIdentifier $Algorithm)

[Java]
    boolean equals(TElAlgorithmIdentifier Algorithm);

Parameters

  • Algorithm - TElAlgorithmIdentifier object to be compared with the current one.
  • Obj - object to be compared with the current one.

Return value

    Returns True if the two objects are equal, and False otherwise.

Description

    Use this method to check if a certain object is equal to the current instance of TElAlgorithmIdentifier.

See also:     Clone    

Discuss this help topic in SecureBlackbox Forum