Subscription.Initialize Method
NSApplication への参照とサブスクリプション クラスの名前を使用して、Subscription クラスのインスタンスを初期化します。パラメータなしのコンストラクタと共に使用して、COM 相互運用機能を有効にします。
名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)
構文
'宣言
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
)
パラメータ
- nsApplication
Subscription オブジェクトがサブスクリプション データを提供する Notification Services アプリケーションを表す NSApplication です。
- subscriptionClassName
Subscription オブジェクトにより提供されたサブスクリプション データを定義するサブスクリプション クラスの名前を表す文字列です。この Subscription オブジェクトが公開するサブスクリプション フィールドは、このサブスクリプション クラスによって決まります。
解説
Initialize メソッドは、COM 相互運用機能を有効にするために、パラメータなしのコンストラクタと共に使用します。パラメータなしのコンストラクタで Subscription オブジェクトを作成した場合は、他のプロパティまたはメソッドを呼び出す前に必ずこのメソッドを呼び出してください。
使用例
Microsoft Visual Basic Scripting Edition (VBScript) のアンマネージ コードで、Subscription を作成して初期化する例を次に示します。
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
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Subscription Class
Subscription Members
Microsoft.SqlServer.NotificationServices Namespace