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