AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.2" />

 ISpellCheckService

public interface ISpellCheckService : IService
Provides a spell correction service.
using System.Collections.Generic; using System.Globalization; namespace AngleSharp.Services { public interface ISpellCheckService : IService { CultureInfo Culture { get; } void Ignore(string word, bool persistent); bool IsCorrect(string word); IEnumerable<string> SuggestFor(string word); } }