Compartilhar via


SPChangeQuery.Alert property

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

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

Syntax

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

value = instance.Alert

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

Property value

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

Comentários

Você pode limitar os resultados da consulta a determinados tipos de alterações, definindo as propriedades de consulta 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

SPChangeAlert