- intent
- The Intent to broadcast; all receivers matching this Intent will receive the broadcast.
- receiverPermission
- (optional) String naming a permissions that a receiver must hold in order to receive your broadcast. If null, no permission is required.
Broadcast the given intent to all interested BroadcastReceivers, delivering them one at a time to allow more preferred receivers to consume the broadcast before it is delivered to less preferred receivers. This call is asynchronous; it returns immediately, and you will continue executing while the receivers are run.
See Android.Content.BroadcastReceiver for more information on Intent broadcasts.