Skip to main content

ASPxSpellCheckerCustomDictionary.LoadFromStream(Stream, Stream) Method

Loads a dictionary and alphabet from the specified streams into the current ASPxSpellCheckerCustomDictionary object, and initializes it.

Namespace: DevExpress.Web.ASPxSpellChecker

Assembly: DevExpress.Web.ASPxSpellChecker.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public virtual void LoadFromStream(
    Stream dictionaryStream,
    Stream alphabetStream
)

Parameters

Name Type Description
dictionaryStream Stream

A Stream object which stores the word list.

alphabetStream Stream

A Stream object which stores the language’s alphabet.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the LoadFromStream(Stream, Stream) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also