Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
 
                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");
