ACAT.Extensions.Default.WordPredictors.PresageWCF.PresageWordPredictor.LoadContext C# (CSharp) Method

LoadContext() public method

Loads the text into a temporary context. This could for instance be the text from a notepad or word document. This makes word prediction more contextual to the document being edited. Call UnloadContext to unload it. This function is not currently supported.
public LoadContext ( String text ) : int
text String Text to add to the context
return int
        public int LoadContext(String text)
        {
            // not supported

            return -1;
        }