DevicesManager.ReportDevicePropertiesCompleted Event

 

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

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

Syntax

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

Implements

IDevicesEventNotifier.ReportDevicePropertiesCompleted

Remarks

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

See Also

DevicesManager Class
Microsoft.WindowsServerSolutions.Common.Devices Namespace

Return to top