Share via


Subscriber.GetDevices Method

Gets all subscriber devices for the subscriber.

Namespace: Microsoft.SqlServer.NotificationServices
Assembly: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

Syntax

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

Return Value

A SubscriberDeviceEnumeration that contains all devices for the subscriber.

Example

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

Thread Safety

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.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace