다음을 통해 공유


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 ()

주의

업데이트된 텍스트:2005년 12월 5일

업데이트된 예제 코드:2005년 12월 5일

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)

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

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