Élément ScannerStatusConditionClearedEvent
L’élément ScannerStatusConditionClearedEvent requis informe le client qu’une condition DeviceCondition signalée précédemment a été effacée au niveau du scanneur.
Utilisation
<wscn:ScannerStatusConditionClearedEvent>
child elements
</wscn:ScannerStatusConditionClearedEvent>
Attributs
Il n’y a pas d’attributs.
Éléments enfants
Élément |
---|
DeviceConditionCleared |
Éléments parents
Il n’y a pas d’éléments parents.
Remarques
Le service d’analyse WSD envoie un élément ScannerStatusConditionClearedEvent lorsqu’une condition d’appareil identifiée dans ScannerStatusConditionEvent a été effacée. ScannerStatusConditionClearedEvent contient un élément DeviceConditionCleared qui contient la condition effacée et l’heure à laquelle elle a été effacée.
Exemples
L’exemple de code suivant montre comment l’appareil avertit un client que la condition précédente identifiée par ConditionId 1543 a été effacée :
<soap:Envelope
xmlns:soap="https://www.w3.org/2003/05/soap-envelope"
xmlns:wsa="https://schemas.xmlsoap.org/ws/2004/08/addressing"
xmlns:wse="https://schemas.xmlsoap.org/ws/2004/08/eventing"
xmlns:wscn="https://schemas.microsoft.com/windows/2006/01/wdp/scan"
soap:encodingStyle='https://www.w3.org/2002/12/soap-encoding'>
<soap:Header>
<wsa:To>AddressofEventSink</wsa:To>
<wsa:Action>
https://schemas.microsoft.com/windows/2006/01/wdp/scan/ScannerStatusConditionClearedEvent
</wsa:Action>
<wsa:MessageID>uuid:UniqueMsgId</wsa:MessageID>
</soap:Header>
<soap:Body>
<wscn:ScannerStatusConditionClearedEvent>
<wscn:DeviceConditionCleared>
<wscn:ConditionId>1543</wscn:ConditionId>
<wscn:ConditionClearTime>
2006-01-21T17:22:35.8345Z
</wscn:ConditionClearTime>
</wscn:DeviceConditionCleared>
</wscn:ScannerStatusConditionClearedEvent>
</soap:Body
</soap:Envelope>