DevicesManager.ReportDeviceCompleted Event

 

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

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

Syntax

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

Implements

IDevicesEventNotifier.ReportDeviceCompleted

Remarks

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

See Also

DevicesManager Class
Microsoft.WindowsServerSolutions.Common.Devices Namespace

Return to top