@@ -375,6 +375,11 @@ public Query(string searchQuery = null)
375
375
[ JsonConverter ( typeof ( MultiTypeObjectConverter ) ) ]
376
376
public object IgnorePlurals { get ; set ; }
377
377
378
+ /// <summary>
379
+ /// Sets the languages to be used by language-specific settings and functionalities such as ignorePlurals, removeStopWords, and CJK word-detection.
380
+ /// </summary>
381
+ public List < string > QueryLanguages { get ; set ; }
382
+
378
383
/// <summary>
379
384
/// Removes stop (common) words from the query before executing it.
380
385
/// </summary>
@@ -415,16 +420,16 @@ public Query(string searchQuery = null)
415
420
public IDictionary < string , object > CustomParameters { get ; set ; }
416
421
417
422
/// <summary>
418
- /// Relevancy score to apply to search in virtual index.
419
- /// Bigger value means less, but more relevant results,
423
+ /// Relevancy score to apply to search in virtual index.
424
+ /// Bigger value means less, but more relevant results,
420
425
/// lesser value - more less relevant results
421
426
/// </summary>
422
427
public int ? RelevancyStrictness { get ; set ; }
423
428
424
429
/// <summary>
425
- /// You need to turn on Dynamic Re-Ranking on your index
426
- /// for it to have an effect on your search results.
427
- /// You can do this through the Re-Ranking page on the dashboard.
430
+ /// You need to turn on Dynamic Re-Ranking on your index
431
+ /// for it to have an effect on your search results.
432
+ /// You can do this through the Re-Ranking page on the dashboard.
428
433
/// This parameter is only used to turn off Dynamic Re-Ranking (with false) at search time.
429
434
/// </summary>
430
435
public bool ? EnableReRanking { get ; set ; }
0 commit comments