- requestCode
- Private request code for the sender that will be associated with the result data when it is returned. The sender can not modify this value, allowing you to identify incoming results.
- data
- Default data to supply in the result, which may be modified by the sender.
- flags
- May be PendingIntent.FLAG_ONE_SHOT, PendingIntent.FLAG_NO_CREATE, PendingIntent.FLAG_CANCEL_CURRENT, PendingIntent.FLAG_UPDATE_CURRENT, or any of the flags as supported by Android.Content.Intent.FillIn(Android.Content.Intent, Android.Content.FillInFlags) to control which unspecified parts of the intent that can be supplied when the actual send happens.
Documentation for this section has not yet been entered.
Create a new PendingIntent object which you can hand to others for them to use to send result data back to your Activity.OnActivityResult(int, Android.App.Result, Android.App.Result) callback. The created object will be either one-shot (becoming invalid after a result is sent back) or multiple (allowing any number of results to be sent through it).