GenericDocument.GetPropertyEmbeddingArray(String) 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.
Retrieves a repeated EmbeddingVector[]
property by path.
[Android.Runtime.Register("getPropertyEmbeddingArray", "(Ljava/lang/String;)[Landroid/app/appsearch/EmbeddingVector;", "GetGetPropertyEmbeddingArray_Ljava_lang_String_Handler", ApiSince=36)]
public virtual Android.App.AppSearch.EmbeddingVector[]? GetPropertyEmbeddingArray(string path);
[<Android.Runtime.Register("getPropertyEmbeddingArray", "(Ljava/lang/String;)[Landroid/app/appsearch/EmbeddingVector;", "GetGetPropertyEmbeddingArray_Ljava_lang_String_Handler", ApiSince=36)>]
abstract member GetPropertyEmbeddingArray : string -> Android.App.AppSearch.EmbeddingVector[]
override this.GetPropertyEmbeddingArray : string -> Android.App.AppSearch.EmbeddingVector[]
Parameters
- path
- String
The path to look for.
Returns
The EmbeddingVector[]
associated with the given path, or null
if no
value is set or the value is of a different type.
- Attributes
Remarks
Retrieves a repeated EmbeddingVector[]
property by path.
See #getProperty
for a detailed description of the path syntax.
If the property has not been set via Builder#setPropertyEmbedding
, this method returns null
.
If it has been set via Builder#setPropertyEmbedding
to an empty EmbeddingVector[]
, this method returns an empty EmbeddingVector[]
.
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.