SharePoint: How can I improve the search relevance of a list item? (How do I use RecordPageClick?)
In order to improve the relevance of a list item, I learnt about RecordClick . Thankfully, I found the following code on Technet to resolve the problem. I have duplicated it here. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security; using System.Threading.Tasks; using Microsoft.SharePoint.Client; using Microsoft.SharePoint.Client.Search; using Microsoft.SharePoint.Client.Search.Query; using System.IO; namespace SPOnlinePageCallback2 { class Program { static void Main(string[] args) { using (ClientContext clientContext = new ClientContext("https://xxxxxxx.sharepoint.com/")) { SecureString passWord = new SecureString(); foreach ...