Freigeben über


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

Rückgabewert

A SubscriberDeviceEnumeration that contains all devices for the subscriber.

Beispiel

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

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace