I was wondering if there's a way to properly get the field value for the AssignedTo field? All I'm getting back is Microsoft.SharePoint.Client.FieldUserValue. I understand there's an id associated with each user in the site collection and that
it looks it up. I just thought the COM would've taken care of it.
Thanks in advance!
Imports Microsoft.SharePoint.Client
Module Module1
Sub Main()
Dim NewClientContext As New ClientContext("http://localhost")
Dim ClientLists As List = NewClientContext.Web.Lists.GetByTitle("Project Tasks")
Dim CamlQuery As New CamlQuery
CamlQuery.ViewXml = "<View/>"
Dim ClientListItems As ListItemCollection = ClientLists.GetItems(CamlQuery)
NewClientContext.Load(Client
View Complete Post