Discuss this help topic in SecureBlackbox Forum

TElWebDAVLock.ConflictsWith

TElWebDAVLock     See also     


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


Checks if two locks are in conflict.

Declaration

[C#]
    bool ConflictsWith(TElWebDAVLock Lock);

[VB.NET]
    Function ConflictsWith(ByVal Lock As TElWebDAVLock) As Boolean

[Pascal]
    function ConflictsWith(const Lock : TElWebDAVLock) : boolean;

[C++]
    bool ConflictsWith(const TElWebDAVLock &Lock);
    bool ConflictsWith(const TElWebDAVLock *Lock);

[PHP]
    bool ConflictsWith(TElWebDAVLock $Lock)

[Java]
    boolean conflictsWith(TElWebDAVLock Lock);

Parameters

  • Lock - the lock to be checked for conflict.

Return value

    Returns True if the given lock conflicts with the current lock, and False otherwise.

Description

    Use this method to check if certain lock is in conflict with the current lock.

See also:     CompatibleWith    

Discuss this help topic in SecureBlackbox Forum