Share via


Job.OperatorToNetSend 属性

Gets or sets the operator that receives a net-send notification when the job finishes execution.

命名空间:  Microsoft.SqlServer.Management.Smo.Agent
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public Property OperatorToNetSend As String 
    Get 
    Set
用法
Dim instance As Job 
Dim value As String 

value = instance.OperatorToNetSend

instance.OperatorToNetSend = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)]
public string OperatorToNetSend { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone)]
public:
property String^ OperatorToNetSend {
    String^ get ();
    void set (String^ value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)>]
member OperatorToNetSend : string with get, set
function get OperatorToNetSend () : String 
function set OperatorToNetSend (value : String)

属性值

类型:System.String
A Boolean value that specifies the operator that receives a net-send notification when the job finishes.

示例

The following code example creates a job and specifies that the operator receives net-send notification when the job is completed.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
jb.OperatorToNetSend = true;

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Test Job")
$jb.Create()
$jb.OperatorToNetSend = $TRUE

请参阅

参考

Job 类

Microsoft.SqlServer.Management.Smo.Agent 命名空间

其他资源

自动执行管理任务(SQL Server 代理)

sp_add_job (Transact-SQL)

在 SQL Server 代理中计划自动管理任务