Compartilhar via


Propriedade do RDL JobFilter.DateJobLastModified

Gets or sets the job filter constraint that restricts the values returned by the JobServer object's EnumJobs method to the date the job was last modified.

Namespace:  Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
Public Property DateJobLastModified As DateTime 
    Get 
    Set
'Uso
Dim instance As JobFilter 
Dim value As DateTime 

value = instance.DateJobLastModified

instance.DateJobLastModified = value
public DateTime DateJobLastModified { get; set; }
public:
property DateTime DateJobLastModified {
    DateTime get ();
    void set (DateTime value);
}
member DateJobLastModified : DateTime with get, set
function get DateJobLastModified () : DateTime 
function set DateJobLastModified (value : DateTime)

Valor da propriedade

Tipo: System.DateTime
A DateTime object value that specifies the date the job was last modified.

Comentários

A job filter can be applied to the JobServer object's EnumJobs method to restrict the returned enumerated list. When the constraint is a date property such as DateJobLastModified the FindOperand is used to specify whether the enumerated list is restricted to jobs that were last modified on an earlier, later, or equal date.

Exemplos

Agendando tarefas administrativas automáticas no SQL Server Agent

Consulte também

Referência

JobFilter Classe

Namespace Microsoft.SqlServer.Management.Smo.Agent

Outros recursos

Tarefas de administração automatizadas (SQL Server Agent)