- intent
- The IntentSender to launch.
- requestCode
- If >= 0, this code will be returned in onActivityResult() when the activity exits.
- fillInIntent
- If non-null, this will be provided as the intent parameter to Android.Content.IntentSender.SendIntent(Android.Content.Context, Android.App.Result, Android.App.Result, Android.App.Result, Android.App.Result).
- flagsMask
- Intent flags in the original IntentSender that you would like to change.
- flagsValues
- Desired values for any bits set in flagsMask
- extraFlags
- Always set to 0.
- options
- Additional options for how the Activity should be started. See Android.Content.Context.StartActivity(Android.Content.Intent, Android.OS.Bundle) for more details. If options have also been supplied by the IntentSender, options given here will override any that conflict with those given by the IntentSender.
Type Reason !:NoType:android/content/IntentSender$SendIntentException;Href=../../../reference/android/content/IntentSender.SendIntentException.html
Like Activity.StartActivityForResult(Android.Content.Intent, System.Int32), but allowing you to use a IntentSender to describe the activity to be started. If the IntentSender is for an activity, that activity will be started as if you had called the regular Activity.StartActivityForResult(Android.Content.Intent, System.Int32) here; otherwise, its associated action will be executed (such as sending a broadcast) as if you had called Android.Content.IntentSender.SendIntent(Android.Content.Context, Android.App.Result, Android.App.Result, Android.App.Result, Android.App.Result) on it.