NSInstance Constructor (String)
Creates and initializes an instance of the NSInstance class.
Namespace: Microsoft.SqlServer.NotificationServices
Assembly : Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Syntax
'Declaration
Public Sub New ( _
instanceName As String _
)
public NSInstance (
string instanceName
)
public:
NSInstance (
String^ instanceName
)
public NSInstance (
String instanceName
)
public function NSInstance (
instanceName : String
)
Parameter
- instanceName
The name of the Notification Services instance.
Hinweise
Aktualisierter Text:14. April 2006
If you are using SQL Server Authentication, use the NSInstance(String,String,String) constructor or the default constructor.
Beispiel
The following examples show how to create and initialize an NSInstance object in managed code:
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);
Plattformen
Entwicklungsplattformen
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Zielplattforme
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Siehe auch
Verweis
NSInstance Class
NSInstance Members
Microsoft.SqlServer.NotificationServices Namespace