November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
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");