ClipDescription.Extras Property
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.
Retrieve extended data from the clip description. -or- Add extended data to the clip description.
public virtual Android.OS.PersistableBundle? Extras { [Android.Runtime.Register("getExtras", "()Landroid/os/PersistableBundle;", "GetGetExtrasHandler", ApiSince=24)] get; [Android.Runtime.Register("setExtras", "(Landroid/os/PersistableBundle;)V", "GetSetExtras_Landroid_os_PersistableBundle_Handler", ApiSince=24)] set; }
[<get: Android.Runtime.Register("getExtras", "()Landroid/os/PersistableBundle;", "GetGetExtrasHandler", ApiSince=24)>]
[<set: Android.Runtime.Register("setExtras", "(Landroid/os/PersistableBundle;)V", "GetSetExtras_Landroid_os_PersistableBundle_Handler", ApiSince=24)>]
member this.Extras : Android.OS.PersistableBundle with get, set
Property Value
the bundle containing extended data previously set with
#setExtras(PersistableBundle)
, or null if no extras have been set.
- Attributes
Remarks
Property getter documentation:
Retrieve extended data from the clip description.
Java documentation for android.content.ClipDescription.getExtras()
.
Property setter documentation:
Add extended data to the clip description.
Java documentation for android.content.ClipDescription.setExtras(android.os.PersistableBundle)
.
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.