Compartilhar via


SPChangeQuery.Add property

Obtém ou define um valor de Boolean que especifica se as alterações que adicionar objetos são incluídas na consulta.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaração
Public Property Add As Boolean
    Get
    Set
'Uso
Dim instance As SPChangeQuery
Dim value As Boolean

value = instance.Add

instance.Add = value
public bool Add { get; set; }

Property value

Type: System.Boolean
true para incluir alterações que adicionar objetos; Caso contrário, false. O padrão é false.

Comentários

Você pode limitar os resultados da consulta para adicionar operações em objetos específicos, definindo as propriedades do objeto correspondente para true. Por exemplo, o código a seguir cria uma consulta para alterações que adicionar alertas.

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

' object type 
query.Alert = True

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

// object type 
query.Alert = true;

// change type 
query.Add = true;

Ver também

Referência

SPChangeQuery class

SPChangeQuery members

Microsoft.SharePoint namespace