PendingIntent.ReadPendingIntentOrNullFromParcel(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 reading either a PendingIntent or null pointer from a Parcel.
[Android.Runtime.Register("readPendingIntentOrNullFromParcel", "(Landroid/os/Parcel;)Landroid/app/PendingIntent;", "")]
public static Android.App.PendingIntent? ReadPendingIntentOrNullFromParcel (Android.OS.Parcel in);
[<Android.Runtime.Register("readPendingIntentOrNullFromParcel", "(Landroid/os/Parcel;)Landroid/app/PendingIntent;", "")>]
static member ReadPendingIntentOrNullFromParcel : Android.OS.Parcel -> Android.App.PendingIntent
Parameters
- in
- Parcel
The Parcel containing the written PendingIntent.
Returns
Returns the PendingIntent read from the Parcel, or null if null had been written.
- Attributes
Remarks
Convenience function for reading either a PendingIntent or null pointer from a Parcel. You must have previously written the PendingIntent with #writePendingIntentOrNullToParcel
.
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.