IntentSender.WriteIntentSenderOrNullToParcel(IntentSender, Parcel) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Convenience function for writing either a IntentSender or null pointer to a Parcel.
[Android.Runtime.Register("writeIntentSenderOrNullToParcel", "(Landroid/content/IntentSender;Landroid/os/Parcel;)V", "")]
public static void WriteIntentSenderOrNullToParcel (Android.Content.IntentSender? sender, Android.OS.Parcel? out);
[<Android.Runtime.Register("writeIntentSenderOrNullToParcel", "(Landroid/content/IntentSender;Landroid/os/Parcel;)V", "")>]
static member WriteIntentSenderOrNullToParcel : Android.Content.IntentSender * Android.OS.Parcel -> unit
Parameters
- sender
- IntentSender
The IntentSender to write, or null.
- out
- Parcel
Where to write the IntentSender.
- Attributes
Remarks
Convenience function for writing either a IntentSender or null pointer to a Parcel. You must use this with #readIntentSenderOrNullFromParcel
for later reading it.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.