Discuss this help topic in SecureBlackbox Forum

TElDNSResourceRecordSet.Find

TElDNSResourceRecordSet     See also     


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


Performs search for RR of certain type by criteria.

Declaration

[C#]
    int Find(string Criteria, TSBDNSResourceType ResourceType, int Start);

[VB.NET]
    Function Find(ByVal Criteria As String, ByVal ResourceType As TSBDNSResourceType, ByVal Start As Integer) As Integer

[Pascal]
    function Find(const Criteria : string; ResourceType : TSBDNSResourceType; Start : Integer): Integer;

[C++]
    int32_t Find(const std::string &Criteria, TSBDNSResourceType ResourceType, int32_t Start);

[PHP]
    integer Find(string $Criteria, integer $ResourceType, integer $Start)

[Java]
    int find(String Criteria, TSBDNSResourceType ResourceType, int Start);

Parameters

  • Criteria - specifies the lookup criteria
  • ResourceType - the type of the RR to look for
  • Start - index of the item from which to start search

Values:

Return value

    Returns the index of the desired item in the list. If the item has not been found, returns -1.

Description

    Use this method to perform search over the RRset for a record with the desired type.

See also:     FindAny     FindKey     FindSelfSignedSignature     FindSignature     FindSignatureByUpperLevel    

Discuss this help topic in SecureBlackbox Forum