Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
ClosestringComparison | String comparison options. |
Sets global string comparison options. Used for word matching and filter handling (unless overridden by filter).
Calling this function will set the global string comparison options used for word and filter matching:
// Set the global string comparison options (default is OrdinalIgnoreCase) queryEngine.SetGlobalStringComparisonOptions(StringComparison.Ordinal);
See QueryEngine.AddOperatorHandler for a complete example.