次の方法で共有


GenericDocument.GetPropertyBytesArray(String) Method

Definition

Retrieves a byte[][] property by path.

[Android.Runtime.Register("getPropertyBytesArray", "(Ljava/lang/String;)[[B", "GetGetPropertyBytesArray_Ljava_lang_String_Handler", ApiSince=31)]
public virtual byte[][]? GetPropertyBytesArray (string path);
[<Android.Runtime.Register("getPropertyBytesArray", "(Ljava/lang/String;)[[B", "GetGetPropertyBytesArray_Ljava_lang_String_Handler", ApiSince=31)>]
abstract member GetPropertyBytesArray : string -> byte[][]
override this.GetPropertyBytesArray : string -> byte[][]

Parameters

path
String

The path to look for.

Returns

Byte[][]

The byte[][] associated with the given path, or null if no value is set or the value is of a different type.

Attributes

Remarks

Retrieves a byte[][] property by path.

See #getProperty for a detailed description of the path syntax.

If the property has not been set via Builder#setPropertyBytes, this method returns null.

If it has been set via Builder#setPropertyBytes to an empty byte[][], this method returns an empty byte[][] starting in android.os.Build.VERSION_CODES#TIRAMISU Android T and null in earlier versions of Android.

Java documentation for android.app.appsearch.GenericDocument.getPropertyBytesArray(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