Telephony.Sms.Intents.WapPushDeliverAction Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Broadcast Action: A new WAP PUSH message has been received by the device.
[Android.Runtime.Register("WAP_PUSH_DELIVER_ACTION")]
public const string WapPushDeliverAction;
[<Android.Runtime.Register("WAP_PUSH_DELIVER_ACTION")>]
val mutable WapPushDeliverAction : string
Field Value
- Attributes
Remarks
Broadcast Action: A new WAP PUSH message has been received by the device. This intent will only be delivered to the default sms app. That app is responsible for writing the message and notifying the user. The intent will have the following extra values:
If a BroadcastReceiver encounters an error while processing this intent it should set the result code appropriately.
The contentTypeParameters extra value is map of content parameters keyed by their names.
If any unassigned well-known parameters are encountered, the key of the map will be 'unassigned/0x...', where '...' is the hex value of the unassigned parameter. If a parameter has No-Value the value in the map will be null.
Requires Manifest.permission.RECEIVE_MMS or Manifest.permission.RECEIVE_WAP_PUSH (depending on WAP PUSH type) to receive.
Note: The broadcast receiver that filters for this intent must declare Manifest.permission.BROADCAST_WAP_PUSH as a required permission in the <receiver> tag.
Android reference for android.provider.Telephony.Sms.Intents.WAP_PUSH_DELIVER_ACTION.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.