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


ProtocolDefinition Constructor ()

Initializes a new instance of the ProtocolDefinition class.

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

Синтаксис

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

Замечания

Изменения текста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 the ClassName and AssemblyName properties.

Пример

The following examples show how to use this default constructor to define a custom delivery protocol for an instance of Notification Services:

// Define a custom delivery protocol and set required properties.
ProtocolDefinition customProtocol = new ProtocolDefinition();
customProtocol.Name = "MyCustomProtocol";
customProtocol.Parent = myInstance;
customProtocol.ClassName = "MyNamespace.MyProtocolClass";
customProtocol.AssemblyName = @"C:\NS\Default\MyCustomComponents.dll";
myInstance.ProtocolDefinitions.Add(customProtocol);
' Define a custom delivery protocol and set required properties.
Dim customProtocol As ProtocolDefinition = _
    New ProtocolDefinition()
customProtocol.Name = "MyCustomProtocol"
customProtocol.Parent = myInstance
customProtocol.ClassName = "MyNamespace.MyProtocolClass"
customProtocol.AssemblyName = "C:\NS\Default\MyCustomComponents.dll"
myInstance.ProtocolDefinitions.Add(customProtocol)

Платформы

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

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

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

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

См. также

Справочник

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