public async Task <List <SAclopediaEntryItem> > GetEntryItemListAsync(int id)
        {
            if (!_webManager.IsAuthenticated)
            {
                throw new Exception("User must be authenticated before using this method.");
            }
            var result = await _webManager.GetDataAsync(EndPoints.SAclopediaBase + $"?act=5&i={id}");

            var document = await _webManager.Parser.ParseAsync(result.ResultHtml);

            return(SAclopediaHandler.ParseEntryItemList(document));
        }
        public async Task <List <SAclopediaEntryItem> > GetEntryItemListAsync(int id, int act = 5, CancellationToken token = default)
        {
            if (!this.webManager.IsAuthenticated)
            {
                throw new UserAuthenticationException(Awful.Core.Resources.ExceptionMessages.UserAuthenticationError);
            }

            var result = await this.webManager.GetDataAsync(EndPoints.SAclopediaBase + $"?act={act}&i={id}", token).ConfigureAwait(false);

            var document = await this.webManager.Parser.ParseDocumentAsync(result.ResultHtml, token).ConfigureAwait(false);

            return(SAclopediaHandler.ParseEntryItemList(document));
        }