Hi @Merrill, Travis Neil ,
You can use ListItemVersion class to retrieve a multiline textfield. Here is the code for example
ctx.Load(web, w => w.ServerRelativeUrl, w => w.Lists);
List list = web.Lists.GetByTitle("Test215");
ctx.Load(list);
CamlQuery camlQuery = new CamlQuery();
ListItemCollection itemColl = list.GetItems(camlQuery);
ctx.Load(itemColl);
ctx.ExecuteQuery();
foreach (ListItem item in itemColl)
{
Console.WriteLine(item["Title"].ToString());
ListItemVersionCollection itemversioncollection = item.Versions;
ctx.Load(itemversioncollection);
ctx.ExecuteQuery();
foreach (ListItemVersion version in itemversioncollection) {
Console.WriteLine(version.FieldValues["mult"] + "----------" + version.FieldValues["Modified"]);
}
}
Console.ReadLine();
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.