Example #1
0
 private void ProcessListProperty(Microsoft.SharePoint.Client.List list, Definitions.PropertyDefinition property)
 {
     list.RootFolder.Properties[property.Key] = property.Value;
 }
Example #2
0
 private void ProcessListItemProperty(Microsoft.SharePoint.Client.ListItem listItem, Definitions.PropertyDefinition property)
 {
     listItem[property.Key] = property.Value;
 }
Example #3
0
 private void ProcessWebProperty(Microsoft.SharePoint.Client.Web web, Definitions.PropertyDefinition property)
 {
     web.AllProperties[property.Key] = property.Value;
 }