Microsoft.Protocols.TestSuites.SharedTestSuite.SharedTestSuiteBase.CheckExclusiveLockExist C# (CSharp) Method

CheckExclusiveLockExist() protected method

This method is used to test whether the exclusive lock with the specified id exist on the file.
protected CheckExclusiveLockExist ( string file, string exclusiveLockId ) : bool
file string Specify the file.
exclusiveLockId string Specify the exclusive lock.
return bool
        protected bool CheckExclusiveLockExist(string file, string exclusiveLockId)
        {
            return this.CheckExclusiveLockExist(file, exclusiveLockId, this.UserName01, this.Password01, this.Domain);
        }

Same methods

SharedTestSuiteBase::CheckExclusiveLockExist ( string file, string exclusiveLockId, string userName, string password, string domain ) : bool