SetItems
method in Coherence.Cloud.StorageObject
Methods
public void SetItems(IEnumerable<StorageItem> items)
Sets the values associated with the specified keys.
Any existing values in the storage object associated with the specified keys will be replaced.
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<StorageItem> | items | The items to set. |
public void SetItems(IEnumerable<KeyValuePair<Key, Value>> items)
Sets the values associated with the specified keys.
Any existing values in the storage object associated with the specified keys will be replaced.
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<KeyValuePair<Key, Value>> | items | The items to set. |
public void SetItems(IEnumerable<KeyValuePair<string, string>> items)
Sets the values associated with the specified keys.
Any existing values in the storage object associated with the specified keys will be replaced.
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<KeyValuePair<string, string>> | items | The items to set. |
public void SetItems(params StorageItem[] items)
Sets the values associated with the specified keys.
Any existing values in the storage object associated with the specified keys will be replaced.
Parameters
| Type | Name | Description |
|---|---|---|
| StorageItem[] | items | The items to set. |