コード例 #1
0
        public async Task <ActionResult <IEnumerable <World> > > GetAllWorlds()
        {
            await _worldService.RefreshStore();

            IEnumerable <World> result = await _worldService.GetAllWorldsAsync();

            return(result.ToArray());
        }