Aura.Channel.World.Inventory.BankTabPocket.GetItemList C# (CSharp) Method

GetItemList() public method

Returns thread-safe list of items in this pocket.
public GetItemList ( ) : IList
return IList
		public IList<Item> GetItemList()
		{
			lock (_items)
				return _items.Values.ToList();
		}