Subscriber.Initialize Method
Initializes an instance of the Subscriber class. Use this method in conjunction with the parameterless constructor to enable COM interoperability.
命名空间: Microsoft.SqlServer.NotificationServices
程序集: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
语法
声明
Public Sub Initialize ( _
nsInstance As NSInstance _
)
public void Initialize (
NSInstance nsInstance
)
public:
virtual void Initialize (
NSInstance^ nsInstance
) sealed
public final void Initialize (
NSInstance nsInstance
)
public final function Initialize (
nsInstance : NSInstance
)
参数
- nsInstance
An NSInstance that represents an instance of Notification Services.
备注
The Initialize method is used in conjunction with the parameterless constructor to enable COM interoperability. It must be called before any other property or method is called on a Subscriber created with the parameterless constructor.
示例
The following example shows how to create and initialize a Subscriber in unmanaged Microsoft Visual Basic Scripting Edition (VBScript) code:
Dim testInstance, testSubscriber
const instanceName = "Tutorial"
' Create and initialize the NSInstance object.
set testInstance = _
WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.NSInstance")
testInstance.Initialize instanceName
' Create and initialize the Subscriber object.
set testSubscriber = _
WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.Subscriber")
testSubscriber.Initialize (testInstance)
wscript.echo "Subscriber object created."
线程安全
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 的硬件和软件要求。
请参阅
参考
Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace