Files
Umbraco-CMS/umbraco/presentation/umbraco_client/tinymce3/plugins/spellchecker/SpellChecker.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

28 lines
954 B
C#

using System;
using System.Collections.Generic;
using System.Web;
namespace umbraco.presentation.umbraco_client.tinymce3.plugins.spellchecker
{
/// <summary>
/// Base class for a spellchecker for TinyMCE
/// </summary>
public abstract class SpellChecker
{
/// <summary>
/// Checks all the words submitted
/// </summary>
/// <param name="language">The language.</param>
/// <param name="words">The words.</param>
/// <returns></returns>
public abstract SpellCheckerResult CheckWords(string language, string[] words);
/// <summary>
/// Gets the suggestions for a single word
/// </summary>
/// <param name="language">The language.</param>
/// <param name="word">The word.</param>
/// <returns></returns>
public abstract SpellCheckerResult GetSuggestions(string language, string word);
}
}