A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
How do you actually use the match summary property?!
I'm trying to assign a dictionary to it, but I can't as it's read only, what am I doing wrong?!
UnifiedSearchQuery query = new UnifiedSearchQuery();
Dictionary<string, string> match = new Dictionary(string, string);
match.Add("Description", searchtext);
query.MatchSummary = match;
The MatchSummary dictionary is already initialized.
UnifiedSearchQuery query = new UnifiedSearchQuery();
query.MatchSummary.Add("Kevin", "Pang");