Discuss this help topic in SecureBlackbox Forum

TElWebDAVCustomLockList.FindNext

TElWebDAVCustomLockList     See also     


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


Find nex item in the list with the desired URL.

Declaration

[C#/Java]
    virtual TElWebDAVLock FindNext(TElWebDavLockFindHandle Handle);
    
    TElWebDavLockFindHandle = System.Object;

[VB.NET]
    Overridable Function FindNext(Handle As TElWebDavLockFindHandle) As TElWebDAVLock
    
    TElWebDavLockFindHandle As System.Object;

[Pascal]
    function FindNext(Handle : TElWebDavLockFindHandle) : TElWebDAVLock; virtual;
    
    TElWebDavLockFindHandle = TObject;

[C++]
    TElWebDAVLockHandle FindNext(TObject &Handle);
    TElWebDAVLockHandle FindNext(TObject *Handle);

[PHP]
    TElWebDAVLock FindNext(TObject $Handle)

Parameters

  • Handle - custom search handle, passed by FindFirst method.

Return value

    Returns the next item in the list with the desired URL.

Description

    Use this methodto find the next lock with the desired URL. Prior to this method, FindFirst must be called, and the search handle must be passed to FindNext.

See also:     Find     FindAll     FindClose     FindFirst    

Discuss this help topic in SecureBlackbox Forum