ProtocolDefinition.ClassName Property
Gets or sets the fully qualified class name of the custom delivery protocol.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
Public Property ClassName As String
public string ClassName { get; set; }
public:
property String^ ClassName {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_ClassName ()
/** @property */
public void set_ClassName (String value)
public function get ClassName () : String
public function set ClassName (value : String)
속성 값
A String, between 1 and 512 characters in length, that specifies the fully qualified class name.
주의
The ClassName value is the fully qualified name of the class within the assembly. If the class is in a namespace, make sure to include the namespace with the class name so that Notification Services can locate the class.
For custom delivery protocols based on the IHttpProtocolProvider interface, specify HttpExtension for the class name.
예
The following examples show how to declare a custom delivery protocol and add it to 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.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
ProtocolDefinition Class
ProtocolDefinition Members
Microsoft.SqlServer.Management.Nmo Namespace