Application.Generator Property

Gets or sets the Generator for the application.

命名空间: Microsoft.SqlServer.Management.Nmo
程序集: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

语法

声明
Public Property Generator As Generator
public Generator Generator { get; set; }
public:
property Generator^ Generator {
    Generator^ get ();
    void set (Generator^ value);
}
/** @property */
public Generator get_Generator ()

/** @property */
public void set_Generator (Generator value)
public function get Generator () : Generator

public function set Generator (value : Generator)

属性值

A Generator object, which is the generator for the application.

备注

Each application has only one generator, which governs rule processing for a notification application.

示例

The following example shows how to define the application's generator:

// Define generator for application
Generator generator = new Generator(myApplication, "Generator");
generator.SystemName = notificationServicesHost;
generator.ThreadPoolSize = 0;
myApplication.Generator = generator;
' Define generator for application
Dim generator As Generator = New Generator( _
    myApplication, "Generator")
generator.SystemName = notificationServicesHost
generator.ThreadPoolSize = 0
myApplication.Generator = generator

线程安全

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

平台

开发平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

目标平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

请参阅

参考

Application Class
Application Members
Microsoft.SqlServer.Management.Nmo Namespace

其他资源

指定生成器设置
Generator Element (ADF)