DeviceNotificationHandler
MBAE 사용 중단 경고
중요
Windows 10 버전 1803부터 MBAE 앱 환경은 MO UWP 앱으로 대체됩니다. MO UWP 앱에 대한 자세한 내용은 UWP 모바일 광대역 앱을 참조하세요.
DeviceNotificationHandler 요소는 디바이스 알림 처리기를 지정합니다. 디바이스 알림 처리기를 사용하면 Microsoft Store 앱이 실행되고 있지 않더라도 모바일 네트워크 운영자 관리 SMS 또는 USSD 알림과 같은 이벤트에 대한 응답으로 코드를 실행할 수 있습니다. 알림 처리기를 구현하는 방법에 대한 자세한 내용은 통신사 알림 백서를 참조하세요.
사용
<DeviceNotificationHandler EventID=”xs:string” EventAsset=”xs:string”/>
Attributes
attribute | Type | 필수 | Description |
---|---|---|---|
EventID |
xs:string |
Yes |
디바이스 알림 처리기의 이벤트 ID입니다. |
EventAsset |
xs:string |
Yes |
디바이스 알림 처리기의 이벤트 자산입니다. |
자식 요소
자식 요소가 없습니다.
부모 요소
요소 | Description |
---|---|
디바이스 알림 처리기를 지정합니다. |
Xsd
<xs:element name="DeviceNotificationHandler" type="tns:DeviceNotificationHandlerType" maxOccurs="unbounded" />
<xs:complexType name="DeviceNotificationHandlerType">
<xs:attribute name="EventID" type="xs:string" use="required"/>
<xs:attribute name="EventAsset" type="xs:string" use="required"/>
</xs:complexType>
설명
Application 요소에서 DeviceNotificationHandler를 지정하면 시스템은 이벤트 처리기를 호출하고 디바이스가 상태로 변경될 때 이벤트를 호출합니다.
EventID 특성은 SMS 디바이스 사례에 대한 SMSEventHandler입니다.
EventAsset 특성은 앱 매니페스트에서 Windows.BackgroundTasks의 확장으로 지정한 값과 동일합니다.
DeviceNotificationHandler 요소는 선택 사항입니다.