DeliveryChannel Constructor ()
Initializes a new instance of the DeliveryChannel class.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public Sub New
public DeliveryChannel ()
public:
DeliveryChannel ()
public DeliveryChannel ()
public function DeliveryChannel ()
Hinweise
Aktualisierter Text:05. Dezember 2005
Aktualisierter Beispielcode:05. Dezember 2005
If you use the default constructor, you must immediately set the Name property and then set the Parent property. You also must set the ProtocolName property.
Beispiel
The following examples show how to use this default constructor:
// Define a delivery channel and set required properties.
DeliveryChannel customChannel = new DeliveryChannel();
customChannel.Name = "MyCustomChannel";
customChannel.Parent = myInstance;
customChannel.ProtocolName = "MyCustomProtocol";
' Define a delivery channel and set required properties.
Dim customChannel As DeliveryChannel = New DeliveryChannel()
customChannel.Name = "MyCustomChannel"
customChannel.Parent = myInstance
customChannel.ProtocolName = "MyCustomProtocol"
Plattformen
Entwicklungsplattformen
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Zielplattforme
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Siehe auch
Verweis
DeliveryChannel Class
DeliveryChannel Members
Microsoft.SqlServer.Management.Nmo Namespace
Andere Ressourcen
Definieren von Übermittlungskanälen
DeliveryChannel Element (ICF)