Xapian.Database.GetSpellingSuggestion C# (CSharp) Method

GetSpellingSuggestion() public method

public GetSpellingSuggestion ( string word ) : string
word string
return string
        public string GetSpellingSuggestion(string word)
        {
            string ret = XapianPINVOKE.Database_GetSpellingSuggestion__SWIG_1(swigCPtr, word);
            if (XapianPINVOKE.SWIGPendingException.Pending) throw XapianPINVOKE.SWIGPendingException.Retrieve();
            return ret;
        }

Same methods

Database::GetSpellingSuggestion ( string word, uint max_edit_distance ) : string