ACAT.Extensions.Default.WordPredictors.PresageWCF.PresageWordPredictor.LoadContext C# (CSharp) 메소드

LoadContext() 공개 메소드

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
리턴 int
        public int LoadContext(String text)
        {
            // not supported

            return -1;
        }