DeliveryChannel Class
Notification Services のインスタンスの配信チャネルを表します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public NotInheritable Class DeliveryChannel
Inherits NamedSmoObject
public sealed class DeliveryChannel : NamedSmoObject
public ref class DeliveryChannel sealed : public NamedSmoObject
public final class DeliveryChannel extends NamedSmoObject
public final class DeliveryChannel extends NamedSmoObject
解説
配信チャネルは、SMTP サーバーなど、特定の配信エンドポイントを表します。Notification Services のインスタンスには配信チャネルを定義します。
通知アプリケーションが通知の配信に使用する配信プロトコルごとに、少なくとも 1 つの配信チャネルを指定する必要があります。これには、標準の SMTP 配信プロトコルと File 配信プロトコルに加え、ProtocolDefinition クラスを使用して定義された任意のカスタム プロトコルが含まれます。
継承階層
System.Object
Microsoft.SqlServer.Management.Smo.SmoObjectBase
Microsoft.SqlServer.Management.Smo.SqlSmoObject
Microsoft.SqlServer.Management.Smo.NamedSmoObject
Microsoft.SqlServer.Management.Nmo.DeliveryChannel
使用例
次の例は、標準のファイル配信プロトコルの配信チャネルを定義する方法を示しています。
// Define a delivery channel that uses the built-in File protocol
DeliveryChannel fileChannel =
new DeliveryChannel(myInstance, "FileChannel");
fileChannel.ProtocolName = "File";
// Define and add arguments for the file delivery channel
DeliveryChannelArgument fileNameArg =
new DeliveryChannelArgument(fileChannel, "FileName");
fileNameArg.Value = sampleDirectory +
@"\Notifications\FileNotifications.txt";
fileChannel.DeliveryChannelArguments.Add(fileNameArg);
// Add the file delivery channel to the instance
myInstance.DeliveryChannels.Add(fileChannel);
' Define a delivery channel using the built-in File protocol
Dim fileChannel As DeliveryChannel = _
New DeliveryChannel(myInstance, "FileChannel")
fileChannel.ProtocolName = "File"
' Define and add arguments for the file delivery channel
Dim fileNameArg As DeliveryChannelArgument = _
New DeliveryChannelArgument(fileChannel, "FileName")
fileNameArg.Value = sampleDirectory + _
"\Notifications\FileNotifications.txt"
fileChannel.DeliveryChannelArguments.Add(fileNameArg)
' Add the file delivery channel to the instance
myInstance.DeliveryChannels.Add(fileChannel)
次の例は、カスタム配信プロトコルの配信チャネルを定義する方法を示しています。ProtocolDefinition クラスを使用してカスタム プロトコルも定義する必要があります。
// Define a delivery channel for the custom protocol
DeliveryChannel customChannel =
new DeliveryChannel(myInstance, "MyCustomChannel");
customChannel.ProtocolName = "MyCustomProtocol";
// Define and add arguments for the custom delivery channel
DeliveryChannelArgument myArg1 =
new DeliveryChannelArgument(customChannel, "Arg1");
myArg1.Value = "Value1";
customChannel.DeliveryChannelArguments.Add(myArg1);
// Add the custom delivery channel to the instance
myInstance.DeliveryChannels.Add(customChannel);
' Define a delivery channel for the custom protocol
Dim customChannel As DeliveryChannel = _
New DeliveryChannel(myInstance, "MyCustomChannel")
customChannel.ProtocolName = "MyCustomProtocol"
' Define and add arguments for the custom delivery channel
Dim myArg1 As DeliveryChannelArgument = _
New DeliveryChannelArgument(customChannel, "Arg1")
myArg1.Value = "Value1"
customChannel.DeliveryChannelArguments.Add(myArg1)
' Add the custom delivery channel to the instance
myInstance.DeliveryChannels.Add(customChannel)
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
DeliveryChannel Members
Microsoft.SqlServer.Management.Nmo Namespace