- intent
- The Intent to broadcast; all receivers matching this Intent will receive the broadcast.
- user
- UserHandle to send the intent to.
- 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 Android.Content.Context.SendStickyOrderedBroadcast(Android.Content.Intent, Android.Content.BroadcastReceiver, Android.Content.BroadcastReceiver, Android.Content.BroadcastReceiver, Android.Content.BroadcastReceiver, Android.Content.BroadcastReceiver) 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.