SPChangeQuery.Delete Property

Gets or sets a Boolean value that specifies whether changes that delete objects are included in the query.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online

Syntax

'Declaration
<ClientCallableAttribute(Name := "DeleteObject")> _
Public Property Delete As Boolean
    Get
    Set
'Usage
Dim instance As SPChangeQuery
Dim value As Boolean

value = instance.Delete

instance.Delete = value
[ClientCallableAttribute(Name = "DeleteObject")]
public bool Delete { get; set; }

Property Value

Type: System.Boolean
true to include deletions; otherwise, false. The default is false.

Remarks

You can limit the results of the query to delete operations on particular objects by setting the corresponding object properties to true. For example, the following code constructs a query for changes that delete list items.

' Construct a query.
Dim query As New SPChangeQuery(False, False)

' object type 
query.Item = True

' change type 
query.Delete = True
// Construct a query.
SPChangeQuery query = new SPChangeQuery(false, false); 

// object type 
query.Item = true;

// change type 
query.Delete = true;

See Also

Reference

SPChangeQuery Class

SPChangeQuery Members

Microsoft.SharePoint Namespace