次の方法で共有


NSInstance Constructor (String)

NSInstance クラスのインスタンスを作成して初期化します。

名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)

構文

'宣言
Public Sub New ( _
    instanceName As String _
)
public NSInstance (
    string instanceName
)
public:
NSInstance (
    String^ instanceName
)
public NSInstance (
    String instanceName
)
public function NSInstance (
    instanceName : String
)

パラメータ

  • instanceName
    Notification Services インスタンスの名前です。

解説

更新されたテキスト :2006 年 4 月 14 日

SQL Server 認証を使用している場合は、NSInstance(String,String,String) コンストラクタまたは既定のコンストラクタを使用します。

使用例

マネージ コードで NSInstance オブジェクトを作成して初期化する例を次に示します。

Dim instanceName As String = "MyInstanceName"

'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)
string instanceName = "MyInstanceName";

//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

NSInstance Class
NSInstance Members
Microsoft.SqlServer.NotificationServices Namespace

変更履歴

リリース

履歴

2006 年 4 月 14 日

新しい内容 :
  • このコンストラクタを SQL Server 認証と共に使用する方法についての説明が追加されました。