Freigeben über


Instance Constructor ()

Initializes a new instance of the Instance class.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public Sub New
public Instance ()
public:
Instance ()
public Instance ()
public function Instance ()

Hinweise

Aktualisierter Text:05. Dezember 2005

Aktualisierter Beispielcode:05. Dezember 2005

If you use the default constructor, you must immediately set the Name property and then set the Parent property. You can then set other properties.

The default constructor does not set default property values. You must set the SchemaName and EncryptArguments settings.

Beispiel

The following examples show how to use this default constructor:

// Create instance and set required properties.
Instance myInstance = new Instance();
myInstance.Name = instanceName;
myInstance.Parent = notificationServices;
myInstance.SchemaName = "dbo";
myInstance.EncryptArguments = false;
' Create instance and set required properties.
Dim myInstance As Instance = New Instance()
myInstance.Name = instanceName
myInstance.Parent = notificationServices
myInstance.SchemaName = "dbo"
myInstance.EncryptArguments = False

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

Instance Class
Instance Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Konfigurieren von Instanzen von Notification Services
NotificationServicesInstance Element (ICF)