Example #1
0
 /// <summary>
 /// Executes specified operation on the file represented by the model object with the specified comment.
 /// </summary>
 /// <param name="item">An item which operation is being performed on.</param>
 /// <param name="operation">The operation to be performed.</param>
 /// <param name="comment">A string that contains a comment about the operation. It is ignored for some oeprations.</param>
 public new void ExecuteFileOperation(T item, SPModelFileOperation operation, string comment)
 {
     base.ExecuteFileOperation(item, operation, comment);
 }
Example #2
0
 /// <summary>
 /// Executes specified operation on the file represented by the model object with no comment.
 /// </summary>
 /// <param name="item">An item which operation is being performed on.</param>
 /// <param name="operation">The operation to be performed.</param>
 public new void ExecuteFileOperation(T item, SPModelFileOperation operation)
 {
     base.ExecuteFileOperation(item, operation);
 }