- intent
- The Intent to broadcast; all receivers matching this Intent will receive the broadcast, and the Intent will be held to be re-broadcast to future receivers.
Perform a Context.SendBroadcast(Intent) that is "sticky," meaning the Intent you are sending stays around after the broadcast is complete, so that others can quickly retrieve that data through the return value of Context.RegisterReceiver(BroadcastReceiver, Android.Content.IntentFilter). In all other ways, this behaves the same as Context.SendBroadcast(Intent).
You must hold the NoType:android/Manifest$permission;Href=../../../reference/android/Manifest.permission.html#BROADCAST_STICKY permission in order to use this API. If you do not hold that permission, Java.Lang.SecurityException will be thrown.