Am I missing something or is UserCreated boolean property really missing in Microsoft.SharePoint.Client.Field ?
When accessing _api/web/fields I can see data about AllowMultipleValues and UserCreated
<d:AllowMultipleValues m:type="Edm.Boolean">true</d:AllowMultipleValues>
<d:UserCreated m:type="Edm.Boolean">false</d:UserCreated>
But I cannot find them on the object that is mapped to those data
ClientContext context = new ClientContext(siteUrl);
context.Credentials = creds;
Web web = context.Web;
var list = web.Lists.GetByTitle(listName);
context.Load(list.Fields);
context.ExecuteQuery();
foreach (Field f in list.Fields)
{
no f.UserCreated
}
How can I retrieve those informations ?
EDIT
My primary goal was to know if the column was created by the user rather than built in. UserCreated is not the way to know it. It's only available for taxonomy Field and I don't know what it is usefull for but it gives no indication about how the column was created.
I opened a new thread on this peculiar subject