Поделиться через


Instance Constructor ()

Initializes a new instance of the Instance class.

Пространство имен: Microsoft.SqlServer.Management.Nmo
Сборка: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Синтаксис

'Декларация
Public Sub New
public Instance ()
public:
Instance ()
public Instance ()
public function Instance ()

Замечания

Изменения текста5 декабря 2005 г.

Изменения образцов кода5 декабря 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.

Пример

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

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

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

Другие ресурсы

Настройка экземпляров служб Notification Services
NotificationServicesInstance Element (ICF)