Parcel.Unmarshall 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.
Overloads
| Name | Description |
|---|---|
| Unmarshall(ByteBuffer) |
Fills the raw bytes of this Parcel with data from the supplied buffer. |
| Unmarshall(Byte[], Int32, Int32) |
Fills the raw bytes of this Parcel with the supplied data. |
Unmarshall(ByteBuffer)
Fills the raw bytes of this Parcel with data from the supplied buffer.
[Android.Runtime.Register("unmarshall", "(Ljava/nio/ByteBuffer;)V", "", ApiSince=36)]
public void Unmarshall(Java.Nio.ByteBuffer buffer);
[<Android.Runtime.Register("unmarshall", "(Ljava/nio/ByteBuffer;)V", "", ApiSince=36)>]
member this.Unmarshall : Java.Nio.ByteBuffer -> unit
Parameters
- buffer
- ByteBuffer
will read buffer.remaining() bytes from the buffer.
- Attributes
Remarks
Fills the raw bytes of this Parcel with data from the supplied buffer.
Java documentation for android.os.Parcel.unmarshall(java.nio.ByteBuffer).
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.
Applies to
Unmarshall(Byte[], Int32, Int32)
Fills the raw bytes of this Parcel with the supplied data.
[Android.Runtime.Register("unmarshall", "([BII)V", "")]
public void Unmarshall(byte[] data, int offset, int length);
[<Android.Runtime.Register("unmarshall", "([BII)V", "")>]
member this.Unmarshall : byte[] * int * int -> unit
Parameters
- data
- Byte[]
The value cannot be null.
- offset
- Int32
The starting offset.
- length
- Int32
The number of values to process.
- Attributes
Remarks
Fills the raw bytes of this Parcel with the supplied data.
Java documentation for android.os.Parcel.unmarshall(byte[], int, int).
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.