Stumps.Server.StumpsServerInstance.FindAllContracts C# (CSharp) Method

FindAllContracts() public method

Finds a list of all Stump contracts.
public FindAllContracts ( ) : IList
return IList
        public IList<StumpContract> FindAllContracts()
        {
            _lock.EnterReadLock();

            var stumpContractList = this._stumpList.ToList();

            _lock.ExitReadLock();

            return stumpContractList;
        }