The members of Android.OS.Message are listed below.
See Also: Inherited members from Java.Lang.Object
Message() | Constructor (but the preferred way to get a Message is to call Message.Obtain). |
Arg1 | int. arg1 and arg2 are lower-cost alternatives to using Message.Data if you only need to store a few integer values. | |
Arg2 | int. arg1 and arg2 are lower-cost alternatives to using Message.Data if you only need to store a few integer values. | |
[read-only] | Callback | Java.Lang.IRunnable. Retrieve callback object that will execute when this message is handled. |
[read-only] static | Creator | IParcelableCreator. |
Data | Bundle. Obtains a Bundle of arbitrary data associated with this event, lazily creating it if necessary. | |
Obj | Java.Lang.Object. An arbitrary object to send to the recipient. | |
ReplyTo | Messenger. Optional Messenger where replies to this message can be sent. | |
SendingUid | int. Optional field indicating the uid that sent the message. | |
Target | Handler. Retrieve the a Android.OS.Handler implementation that will receive this message. | |
What | int. User-defined message code so that the recipient can identify what this message is about. | |
[read-only] | When | long. Return the targeted delivery time of this message, in milliseconds. |
[read-only] override | ThresholdClass | IntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
[read-only] override | ThresholdType | Type. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
CopyFrom(Message)Make this message like o. | ||
DescribeContents()Describe the kinds of special objects contained in this Parcelable's marshalled representation. | ||
static | Obtain()Return a new Message instance from the global pool. | |
static | Obtain(Handler)Same as Message.Obtain, but sets the value for the target member on the Message returned. | |
static | Obtain(Message)Same as Message.Obtain, but copies the values of an existing message (including its target) into the new one. | |
static | Obtain(Handler, Java.Lang.IRunnable)Same as Message.Obtain(Handler), but assigns a callback Runnable on the Message that is returned. | |
static | Obtain(Handler, Action)Documentation for this section has not yet been entered. | |
static | Obtain(Handler, int)Same as Message.Obtain, but sets the values for both target and what members on the Message. | |
static | Obtain(Handler, int, Java.Lang.Object)Same as Message.Obtain, but sets the values of the target, what, and obj members. | |
static | Obtain(Handler, int, int, int)Same as Message.Obtain, but sets the values of the target, what, arg1, and arg2 members. | |
static | Obtain(Handler, int, int, int, Java.Lang.Object)Same as Message.Obtain, but sets the values of the target, what, arg1, arg2, and obj members. | |
PeekData()Like getData(), but does not lazily create the Bundle. | ||
Recycle()Return a Message instance to the global pool. | ||
SendToTarget()Sends this Message to the Handler specified by Message.Target. | ||
WriteToParcel(Parcel, ParcelableWriteFlags)Flatten this object in to a Parcel. |