Sets the flag indicating that this receiver should abort the current broadcast; only works with broadcasts sent through Context.SendOrderedBroadcast(Intent, System.String). This will prevent any other broadcast receivers from receiving the broadcast. It will still call BroadcastReceiver.OnReceive(Context, Android.Content.Intent) of the BroadcastReceiver that the caller of Context.SendOrderedBroadcast(Intent, System.String) passed in.
This method does not work with non-ordered broadcasts such as those sent with Context.SendBroadcast(Intent)