[]
Class that contains a list of additional words and methods for managing the list.
public class UserDictionary : SpellDictionaryBase, ISpellDictionary, ICollection<string>, IEnumerable<string>, IEnumerable
This class is used to store user dictionaries. It provides methods for adding and removing words, as well as saving the dictionary.
Name | Description |
---|---|
AddWord(string) | Adds a word to the dictionary. |
Clear() | Clears the dictionary removing all words in it. |
Contains(string) | Checks whether the dictionary contains a given word. |
Load(Stream) | Loads the dictionary from a UTF-8 stream. |
Load(string) | Loads the dictionary from a file. |
LoadFromIsolatedStorage(string, IsolatedStorageScope, Type, Type) | Loads the dictionary from a compressed file in isolated storage. |
RemoveWord(string) | Removes a word from the dictionary. |
Save(Stream) | Saves the user dictionary into a UTF-8 encoded stream. |
SaveToIsolatedStorage(string, IsolatedStorageScope, Type, Type) | Saves the dictionary into a compressed file in isolated storage. |