Aura.Channel.World.Inventory.BankInventory.GetTabItems C# (CSharp) Метод

GetTabItems() публичный Метод

Returns all items in specified tab. Returns an empty list if tab doesn't exist.
public GetTabItems ( string tabName ) : IList
tabName string
Результат IList
		public IList<Item> GetTabItems(string tabName)
		{
			if (!this.Tabs.ContainsKey(tabName))
				return new List<Item>();

			return this.Tabs[tabName].GetItemList();
		}