AngleSharp by AngleSharp

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

.NET API 1,214,976 bytes

 ISpellCheckService

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