Partager via


DeliveryChannelArgument Constructor ()

Initializes a new instance of the DeliveryChannelArgument class.

Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntaxe

'Déclaration
Public Sub New
public DeliveryChannelArgument ()
public:
DeliveryChannelArgument ()
public DeliveryChannelArgument ()
public function DeliveryChannelArgument ()

Notes

Texte mis à jour :5 décembre 2005

Exemple de code mis à jour :5 décembre 2005

If you use the default constructor, you must immediately set the Name property and then set the Parent property. You can then set other properties.

Exemple

The following examples show how to use this default constructor:

// Define and add arguments for the custom delivery channel
DeliveryChannelArgument myArg1 = new DeliveryChannelArgument();
myArg1.Name = "Arg1";
myArg1.Parent = customChannel;
myArg1.Value = "Value1";
customChannel.DeliveryChannelArguments.Add(myArg1);
' Define and add arguments for the custom delivery channel
Dim myArg1 As DeliveryChannelArgument = _
    New DeliveryChannelArgument()
myArg1.Name = "Arg1"
myArg1.Parent = customChannel
myArg1.Value = "Value1"
customChannel.DeliveryChannelArguments.Add(myArg1)

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

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

Autres ressources

Définition des canaux de remise
Argument Element (ICF)