次の方法で共有


DeliveryChannelEnumeration.Item Property

配信チャネルへの参照を返します。

名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)

構文

'宣言
Public ReadOnly Default Property Item ( _
    deliveryChannelName As String _
) As DeliveryChannel
public DeliveryChannel this [
    string deliveryChannelName
] { get; }
public:
virtual property DeliveryChannel^ default [String^] {
    DeliveryChannel^ get (String^ deliveryChannelName) sealed;
}
/** @property */
public final DeliveryChannel get_Item (String deliveryChannelName)

パラメータ

  • deliveryChannelName
    取得する配信チャネルの名前です。

プロパティ値

特定の配信チャネルを表す DeliveryChannel オブジェクトです。

使用例

Item プロパティを使用して DeliveryChannel オブジェクトを取得する例を次に示します。

Dim instanceName As String = "MyInstanceName"
Dim deliveryChannelName As String = "MyDeliveryChannelName"

'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)

'Create a DeliveryChannelEnumeration object.
Dim myDeliveryChannelEnumeration As _
    New DeliveryChannelEnumeration(myInstance)

'Use the Item property to return a DeliveryChannel object.
Dim myDeliveryChannel As DeliveryChannel = _
    myDeliveryChannelEnumeration(deliveryChannelName)
string instanceName = "MyInstanceName";
string deliveryChannelName = "MyDeliveryChannelName";

//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);

//Create a DeliveryChannelEnumeration object.
DeliveryChannelEnumeration myDeliveryChannelEnumeration = 
    new DeliveryChannelEnumeration(myInstance);

//Use the Item property to return a DeliveryChannel object.
DeliveryChannel myDeliveryChannel = 
    myDeliveryChannelEnumeration[deliveryChannelName];

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

DeliveryChannelEnumeration Class
DeliveryChannelEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace