DevicesManager.GetAllDevicesInfoCompleted Event

 

Represents an event that is raised when the GetAllDevicesInfoAsync operation finishes.

Namespace:   Microsoft.WindowsServerSolutions.Common.Devices
Assembly:  DevicesOM (in DevicesOM.dll)

Syntax

public event EventHandler<GetAllDevicesInfoCompletedEventArgs> GetAllDevicesInfoCompleted
public:
event EventHandler<GetAllDevicesInfoCompletedEventArgs^>^ GetAllDevicesInfoCompleted {
    virtual void add(EventHandler<GetAllDevicesInfoCompletedEventArgs^>^ value) sealed;
    virtual void remove(EventHandler<GetAllDevicesInfoCompletedEventArgs^>^ value) sealed;
}
Public Event GetAllDevicesInfoCompleted As EventHandler(Of GetAllDevicesInfoCompletedEventArgs)

Implements

IDevicesEventNotifier.GetAllDevicesInfoCompleted

Remarks

The caller of the GetAllDevicesInfoAsync method must subscribe to this event. When this event is received, the error parameter of GetAllDevicesInfoCompletedEventArgs should be checked for an exception.

See Also

DevicesManager Class
Microsoft.WindowsServerSolutions.Common.Devices Namespace

Return to top