London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
UnifiedSearchQuery query = new UnifiedSearchQuery();
query.Path = "/TmpDocuments";
query.FileNamePattern = "*.*";
query.MatchSummary.Add("Author", "Tak");
UnifiedSearchHitCollection hits = query.Search();
The count on the returned search hit collection is always 0. But the code works if i change the path to "/Documents" and add a file with the same author to the Documents folder.
Is there something i'm missing?
Thanks
Tak