Intent.GetByteArrayExtra(String) Method

Definition

Retrieve extended data from the intent.

[Android.Runtime.Register("getByteArrayExtra", "(Ljava/lang/String;)[B", "GetGetByteArrayExtra_Ljava_lang_String_Handler")]
public virtual byte[]? GetByteArrayExtra (string? name);
[<Android.Runtime.Register("getByteArrayExtra", "(Ljava/lang/String;)[B", "GetGetByteArrayExtra_Ljava_lang_String_Handler")>]
abstract member GetByteArrayExtra : string -> byte[]
override this.GetByteArrayExtra : string -> byte[]

Parameters

name
String

The name of the desired item.

Returns

Byte[]

the value of an item previously added with putExtra(), or null if no byte array value was found.

Attributes

Remarks

Retrieve extended data from the intent.

Java documentation for android.content.Intent.getByteArrayExtra(java.lang.String).

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

See also

  • <xref:Android.Content.Intent.PutExtra(System.String%2c+System.Byte%5b%5d)>