Discuss this help topic in SecureBlackbox Forum

TElRelativeDistinguishedName.Contains

TElRelativeDistinguishedName     See also     


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


Checks whether the list contains a given RDN.

Declaration

[C#]
    bool Contains(TElRelativeDistinguishedName RDN, bool IgnoreTags);

[VB.NET]
    Function Contains(ByVal RDN As TElRelativeDistinguishedName, ByVal IgnoreTags As Boolean) As Boolean

[Pascal]
    function Contains(RDN : TElRelativeDistinguishedName; IgnoreTags : boolean) : boolean;

[C++]
    bool Contains(TElRelativeDistinguishedName &RDN, bool IgnoreTags);
    bool Contains(TElRelativeDistinguishedName *RDN, bool IgnoreTags);

[PHP]
    bool Contains(TElRelativeDistinguishedName $RDN, bool $IgnoreTags)

[Java]
    boolean contains(TElRelativeDistinguishedName RDN, boolean IgnoreTags);

Parameters

  • RDN - specifies RDN.
  • IgnoreTags - defines whether the tags should be ignored or not.

Return value

Returns True if the list contains the specified RDN, and False otherwise.

Description

Use this method to check whether the list contains specific RDNs.

See also:     LoadFromDNString     LoadFromTag    

Discuss this help topic in SecureBlackbox Forum