Subscription.Initialize Method
Initializes an instance of the Subscription class with a reference to an NSApplication and the name of a subscription class. Is used in conjunction with the parameterless constructor to enable COM interoperability.
Espace de noms: Microsoft.SqlServer.NotificationServices
Assembly: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Syntaxe
'Déclaration
Public Sub Initialize ( _
nsApplication As NSApplication, _
subscriptionClassName As String _
)
public void Initialize (
NSApplication nsApplication,
string subscriptionClassName
)
public:
virtual void Initialize (
NSApplication^ nsApplication,
String^ subscriptionClassName
) sealed
public final void Initialize (
NSApplication nsApplication,
String subscriptionClassName
)
public final function Initialize (
nsApplication : NSApplication,
subscriptionClassName : String
)
Paramètres
- nsApplication
An NSApplication representing the Notification Services application to which the Subscription object provides subscription data.
- subscriptionClassName
A string containing the name of the subscription class that defines the subscription data that the Subscription object provides. This determines what subscription fields this Subscription object exposes.
Notes
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 Subscription object created with the parameterless constructor.
Exemple
The following example shows how to create and initialize a Subscription in unmanaged Microsoft Visual Basic Scripting Edition (VBScript) code:
Dim testInstance, testApplication, testSubscription, subscriptionId
const instanceName = "Tutorial"
const applicationName = "Weather"
const subscriptionClassName = "WeatherCity"
' Create the NSInstance object.
set testInstance = WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.NSInstance")
testInstance.Initialize instanceName
' Create the NSApplication object.
set testApplication = WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.NSApplication")
testApplication.Initialize (testInstance), applicationName
' Create the Subscription object.
set testSubscription = WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.Subscription")
testSubscription.Initialize (testApplication), subscriptionClassName
Sécurité des threads
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.
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
Subscription Class
Subscription Members
Microsoft.SqlServer.NotificationServices Namespace