API.DataAccess.MemoryTransitRepository.GetPlatformTagsAsync C# (CSharp) Метод

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

public GetPlatformTagsAsync ( ) : int>>.Task
Результат int>>.Task
        public Task<Dictionary<int, int>> GetPlatformTagsAsync()
        {
            if (s_platformTags == null)
            {
                s_platformTags = JsonConvert.DeserializeObject<Dictionary<int, int>>(File.ReadAllText(_platformTagsPath));
            }
            return Task.FromResult(s_platformTags);
        }