AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.2.0-beta.423" />

 ISpellCheckService

public interface ISpellCheckService
Provides a spell correction service.
using System.Collections.Generic; using System.Globalization; using System.Runtime.CompilerServices; namespace AngleSharp.Browser { [System.Runtime.CompilerServices.NullableContext(1)] public interface ISpellCheckService { CultureInfo Culture { get; } void Ignore(string word, bool persistent); bool IsCorrect(string word); IEnumerable<string> SuggestFor(string word); } }