API clients
Turns standard stop word dictionary entries on or off for a given language.
editSettings
// Initialize the client var client = new SearchClient(new SearchConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")); // Call the API var response = await client.SetDictionarySettingsAsync( new DictionarySettingsParams { DisableStandardEntries = new StandardEntries { Plurals = new Dictionary<string, Boolean> { { "fr", false }, { "en", false }, { "ru", true }, }, }, } ); // >LOG
Was this page helpful?