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