search


Description:

public async List<Item> search (Schema? schema, HashTable<string,string> attributes, SearchFlags flags, Cancellable? cancellable) throws Error

Search for items matching the attributes in the collection.

The attributes should be a table of string keys and string values.

If ALL is set in flags, then all the items matching the search will be returned. Otherwise only the first item will be returned. This is almost always the unlocked item that was most recently stored.

If UNLOCK is set in flags, then items will be unlocked if necessary. In either case, locked and unlocked items will match the search and be returned. If the unlock fails, the search does not fail.

If LOAD_SECRETS is set in flags, then the items will have their secret values loaded and available via [methodItem.get_secret].

This function returns immediately and completes asynchronously.

Parameters:

this

a secret collection

schema

the schema for the attributes

attributes

search for items matching these attributes

flags

search option flags

cancellable

optional cancellation object

callback

called when the operation completes

user_data

data to pass to the callback