- requestCode
- The integer request code originally supplied to startActivityForResult(), allowing you to identify who this result came from.
- resultCode
- The integer result code returned by the child activity through its setResult().
- data
- An Intent, which can return result data to the caller (various data can be attached to Intent "extras").
Receive the result from a previous call to Fragment.StartActivityForResult(Android.Content.Intent, System.Int32). This follows the related Activity API as described there in Activity.OnActivityResult(int, Android.App.Result, Android.App.Result).