- intent
- The IntentSender to launch.
- fillInIntent
- If non-null, this will be provided as the intent parameter to IntentSender.SendIntent(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 Context.StartActivity(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 Context.StartActivity(Intent, Android.OS.Bundle), but taking a IntentSender to start. If the IntentSender is for an activity, that activity will be started as if you had called the regular Context.StartActivity(Intent) here; otherwise, its associated action will be executed (such as sending a broadcast) as if you had called IntentSender.SendIntent(Context, Android.App.Result, Android.App.Result, Android.App.Result, Android.App.Result) on it.