Microsoft.Protocols.TestSuites.SharedTestSuite.StatusManager.CancelExclusiveLock C# (CSharp) Method

CancelExclusiveLock() public method

This method is used to cancel record of exclusive lock.
public CancelExclusiveLock ( string fileUrl ) : void
fileUrl string Specify the file URL which get the exclusive lock.
return void
        public void CancelExclusiveLock(string fileUrl)
        {
            if (this.releaseExclusiveLockFunctions.Keys.Contains(fileUrl))
            {
                this.releaseExclusiveLockFunctions.Remove(fileUrl);
            }
        }