Пример #1
0
 /// <summary>
 /// Commits changes made to the specified model class instances with the specified commit option.
 /// </summary>
 /// <param name="item">An item with changes to be persisted.</param>
 /// <param name="mode">An value of <see cref="Codeless.SharePoint.ObjectModel.SPModelCommitMode" /> representing how a list item is updated.</param>
 public new void CommitChanges(T item, SPModelCommitMode mode)
 {
     base.CommitChanges(item, mode);
 }
Пример #2
0
 /// <summary>
 /// Commits changes made to model class instances fetched from this manager with the specified commit option.
 /// </summary>
 /// <param name="mode">An value of <see cref="Codeless.SharePoint.ObjectModel.SPModelCommitMode" /> representing how a list item is updated.</param>
 public new void CommitChanges(SPModelCommitMode mode)
 {
     base.CommitChanges(mode);
 }