- intent
- The Intent to broadcast; all receivers matching this Intent will receive the broadcast.
- user
- UserHandle to send the intent to.
- receiverPermission
- String naming a permissions that a receiver must hold in order to receive your broadcast. If null, no permission is required.
- resultReceiver
- Your own BroadcastReceiver to treat as the final receiver of the broadcast.
- scheduler
- A custom Handler with which to schedule the resultReceiver callback; if null it will be scheduled in the Context's main thread.
- initialCode
- An initial value for the result code. Often Activity.RESULT_OK.
- initialData
- An initial value for the result data. Often null.
- initialExtras
- An initial value for the result extras. Often null.
Version of Context.SendOrderedBroadcast(Intent, System.String, System.String, System.String, System.String, System.String, System.String) that allows you to specify the user the broadcast will be sent to. This is not available to applications that are not pre-installed on the system image. Using it requires holding the INTERACT_ACROSS_USERS permission.
See Android.Content.BroadcastReceiver for more information on Intent broadcasts.