Subscription Constructor (NSApplication, String)
Subscription クラスのオブジェクトを作成して初期化します。
名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)
構文
'宣言
Public Sub New ( _
nsApplication As NSApplication, _
subscriptionClassName As String _
)
public Subscription (
NSApplication nsApplication,
string subscriptionClassName
)
public:
Subscription (
NSApplication^ nsApplication,
String^ subscriptionClassName
)
public Subscription (
NSApplication nsApplication,
String subscriptionClassName
)
public function Subscription (
nsApplication : NSApplication,
subscriptionClassName : String
)
パラメータ
- nsApplication
サブスクリプションの Notification Services アプリケーションを表す NSApplication です。
- subscriptionClassName
サブスクリプションのサブスクリプション クラスの名前を表す String です。
使用例
マネージ コードで Subscription オブジェクトを作成して初期化する例を次に示します。
' Create the NSInstance object.
Dim testInstance As New NSInstance("Tutorial")
' Create the NSApplication object.
Dim testApplication As New NSApplication(testInstance, "Weather")
' Create the Subscription object.
Dim testSubscription As _
New Subscription(testApplication, "WeatherCity")
// Create the NSInstance object.
NSInstance testInstance = new NSInstance("Tutorial");
// Create the NSApplication object.
NSApplication testApplication =
new NSApplication(testInstance, "Weather");
// Create the Subscription object.
Subscription testSubscription =
new Subscription(testApplication, "WeatherCity");
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Subscription Class
Subscription Members
Microsoft.SqlServer.NotificationServices Namespace