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


ProtocolDefinitionCollection.Add Method

Adds a ProtocolDefinition to the ProtocolDefinitionCollection.

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

Синтаксис

'Декларация
Public Sub Add ( _
    protocolDefinition As ProtocolDefinition _
)
public void Add (
    ProtocolDefinition protocolDefinition
)
public:
void Add (
    ProtocolDefinition^ protocolDefinition
)
public void Add (
    ProtocolDefinition protocolDefinition
)
public function Add (
    protocolDefinition : ProtocolDefinition
)

Параметры

Замечания

Each ProtocolDefinition in the collection must have a unique name.

If you add a ProtocolDefinition after deploying the instance, you must Update the instance to apply the changes.

Пример

The following examples show how to declare a custom delivery protocol and add it to the collection of custom delivery protocols for an instance of Notification Services:

ProtocolDefinition customProtocol = 
    new ProtocolDefinition(myInstance, "MyCustomProtocol");
customProtocol.ClassName = "MyNamespace.MyProtocolClass";
customProtocol.AssemblyName = @"C:\NS\Full\MyCustomComponents.dll";
myInstance.ProtocolDefinitions.Add(customProtocol);
Dim customProtocol As ProtocolDefinition = _
    New ProtocolDefinition(myInstance, "MyCustomProtocol")
customProtocol.ClassName = "MyNamespace.MyProtocolClass"
customProtocol.AssemblyName = _
    "C:\NS\Full\MyCustomComponents.dll"
myInstance.ProtocolDefinitions.Add(customProtocol)

Синхронизация потоков

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Платформы

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

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

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

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

См. также

Справочник

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

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

Определение пользовательских протоколов доставки
Protocol Element (ICF)