Поделиться через


Subscriber.GetDevices Method

Gets all subscriber devices for the subscriber.

Пространство имен: Microsoft.SqlServer.NotificationServices
Сборка: Microsoft.SqlServer.NotificationServices (in 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

Возвращаемое значение

A SubscriberDeviceEnumeration that contains all devices for the subscriber.

Пример

The following examples show how to use the GetDevices method to retrieve all devices for a subscriber:

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();

Синхронизация потоков

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace