Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Deletes the custom action and returns the number of actions remaining for the current and parent scope.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Available in SharePoint Online
Syntax
'Declaration
<SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.ProtectedMemberOutParam)> _
Protected Sub Delete ( _
<OutAttribute> ByRef scopeRecordsRemaining As Integer, _
<OutAttribute> ByRef parentScopeRecordsRemaining As Integer _
)
'Usage
Dim scopeRecordsRemaining As Integer
Dim parentScopeRecordsRemaining As Integer
Me.Delete(scopeRecordsRemaining, _
parentScopeRecordsRemaining)
[SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.ProtectedMemberOutParam)]
protected void Delete(
out int scopeRecordsRemaining,
out int parentScopeRecordsRemaining
)
Parameters
scopeRecordsRemaining
Type: System.Int32Gets the number of records remaining in the database for this scope after this custom action is deleted. A negative integer means that the deletion did not happen. (You could have called delete on something that did not exist.)
parentScopeRecordsRemaining
Type: System.Int32Gets the number of records remaining in the database for the parent scope after this custom action is deleted. A negative integer means that the deletion did not happen. (You could have called delete on something that did not exist.)