Job.EventLogLevel Property
Gets or sets the completion action that determines whether to generate an operating system event log entry when the job finishes execution.
Namespace: Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
<SfcPropertyAttribute> _
Public Property EventLogLevel As CompletionAction
Get
Set
'Usage
Dim instance As Job
Dim value As CompletionAction
value = instance.EventLogLevel
instance.EventLogLevel = value
[SfcPropertyAttribute]
public CompletionAction EventLogLevel { get; set; }
[SfcPropertyAttribute]
public:
property CompletionAction EventLogLevel {
CompletionAction get ();
void set (CompletionAction value);
}
[<SfcPropertyAttribute>]
member EventLogLevel : CompletionAction with get, set
function get EventLogLevel () : CompletionAction
function set EventLogLevel (value : CompletionAction)
Property Value
Type: Microsoft.SqlServer.Management.Smo.Agent.CompletionAction
A CompletionAction value that specifies whether to generate an operating system event log entry.
Remarks
If directed, Microsoft SQL Server Agent can generate an event log entry when execution succeeds or fails. Event log entries can also be generated regardless of success or failure of the job. By default, event log entries are not generated when execution finishes.
See Also