Table of Contents

RemoveItems

Methods
public int RemoveItems(IEnumerable<Key> keys)

Removes items with the specified items from the storage object.

Parameters
Type Name Description
IEnumerable<Key> keys

The keys of items to remove from the storage object.

Returns
Type Description
int
public int RemoveItems(IEnumerable<StorageItem> items)

Removes the specified items from the storage object.

Both the key and value of an item must match for it to be removed.

Parameters
Type Name Description
IEnumerable<StorageItem> items

The items to remove from the storage object.

Returns
Type Description
int
public int RemoveItems(params Key[] keys)

Removes items with the specified items from the storage object.

Parameters
Type Name Description
Key[] keys

The keys of items to remove from the storage object.

Returns
Type Description
int
public int RemoveItems(params StorageItem[] items)

Removes the specified items from the storage object.

Both the key and value of an item must match for it to be removed.

Parameters
Type Name Description
StorageItem[] items

The items to remove from the storage object.

Returns
Type Description
int