AngleSharp by AngleSharp

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

.NET API 1,261,568 bytes

 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); } }