public IndexedCollection Stack(int SlotID) { if (!zCol.ContainsKey(SlotID)) { zCol.Add(SlotID, new IndexedCollection()); } return((IndexedCollection)zCol.Item(SlotID)); }
//internal bool Remove(string ServerSID = "") //{ // if (ServerSID.Length == 0) { return Remove(-1); } // return Remove(zServers.GetID(ServerSID)); //} internal IndexedCollection Stack(int ServerID, int SlotID) { if (!SlotExist(SlotID)) { return(null); } if (Servers.Item(ServerID) == null) { return(null); } if (!zStacks.ContainsKey(ServerID)) { zStacks.Add(ServerID, new VirtualStack()); } VirtualStack zItem = (VirtualStack)zStacks.Item(ServerID); return(zItem.Stack(SlotID)); }
internal VirtualServer Item(int ServerID) { return((VirtualServer)zServers.Item(ServerID)); }