次の方法で共有


ScannerStatusConditionClearedEvent 要素

必須の ScannerStatusConditionClearedEvent 要素では、以前に報告された DeviceCondition 条件がスキャナーでクリアされたことをクライアントに通知します。

使用方法

<wscn:ScannerStatusConditionClearedEvent>
  child elements
</wscn:ScannerStatusConditionClearedEvent>

属性

属性はありません。

子要素

要素
DeviceConditionCleared

親要素

親要素は存在しません。

解説

WSD スキャン サービスは、ScannerStatusConditionEvent で識別されたデバイス条件がクリアされたときに、ScannerStatusConditionClearedEvent 要素を送信します。 ScannerStatusConditionClearedEvent には、クリアされた条件とクリアされた時刻を含む DeviceConditionCleared 要素が含まれています。

次のコード例は、ConditionId 1543 が特定した以前の条件がクリアされたことを、デバイスがクライアントに通知する方法を示しています。

<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>

関連項目

ConditionId

DeviceCondition

DeviceConditionCleared

ScannerStatusConditionEvent