次の方法で共有


Subscriber.GetDevices Method

サブスクライバのサブスクライバ デバイスをすべて取得します。

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

構文

'宣言
Public Function GetDevices As SubscriberDeviceEnumeration
public SubscriberDeviceEnumeration GetDevices ()
public:
virtual SubscriberDeviceEnumeration^ GetDevices () sealed
public final SubscriberDeviceEnumeration GetDevices ()
public final function GetDevices () : SubscriberDeviceEnumeration

戻り値

サブスクライバのすべてのデバイスを表す SubscriberDeviceEnumeration です。

使用例

GetDevices メソッドを使用してサブスクライバのすべてのデバイスを取得する例を次に示します。

Dim instanceName As String =  "Tutorial" 
 
' Create the NSInstance object.
Dim testInstance As NSInstance =  New NSInstance(instanceName) 
 
' Create the Subscriber object.
Dim testSubscriber As Subscriber =  New Subscriber(testInstance) 
 
' Set the subscriber ID so that the
' correct records are retrieved. 
testSubscriber.SubscriberId = "TestUser1"
 
' Retrieve the subscriber's devices.
Dim testSubscriberDeviceEnumeration As _
    SubscriberDeviceEnumeration = testSubscriber.GetDevices()
 
' Print each device to the console.
Dim singleSubDevice As SubscriberDevice
For Each singleSubDevice In testSubscriberDeviceEnumeration
    Console.WriteLine(singleSubDevice.DeviceName)
Next
Console.ReadLine()
string instanceName = "Tutorial";

// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);

// Create the Subscriber object.
Subscriber testSubscriber = new Subscriber(testInstance);

// Set the subscriber ID so that the
// correct records are retrieved. 
testSubscriber.SubscriberId = "TestUser1";

// Retrieve the subscriber's devices.
SubscriberDeviceEnumeration testSubscriberDeviceEnumeration =
    testSubscriber.GetDevices();

// Print each device to the console.
foreach (SubscriberDevice singleSubDevice in
    testSubscriberDeviceEnumeration)
{
    Console.WriteLine(singleSubDevice.DeviceName);
}
Console.ReadLine();

スレッド セーフ

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

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace