The ListOperation type exposes the following members.
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
![]() | ListOperation | Initializes a new instance of the ListOperation class |
Methods
Name | Description | |
---|---|---|
![]() ![]() | Append |
Create list append operation.
Server appends value to end of list bin.
Server returns list size.
|
![]() ![]() | AppendItems |
Create list append items operation.
Server appends each input list item to end of list bin.
Server returns list size.
|
![]() ![]() | Clear |
Create list clear operation.
Server removes all items in list bin.
Server does not return a result by default.
|
![]() ![]() | Get |
Create list get operation.
Server returns item at specified index in list bin.
|
![]() ![]() | GetRange(String, Int32) |
Create list get range operation.
Server returns items starting at index to the end of list.
|
![]() ![]() | GetRange(String, Int32, Int32) |
Create list get range operation.
Server returns "count" items starting at specified index in list bin.
|
![]() ![]() | Insert |
Create list insert operation.
Server inserts value to specified index of list bin.
Server returns list size.
|
![]() ![]() | InsertItems |
Create list insert items operation.
Server inserts each input list item starting at specified index of list bin.
Server returns list size.
|
![]() ![]() | Pop |
Create list pop operation.
Server returns item at specified index and removes item from list bin.
|
![]() ![]() | PopRange(String, Int32) |
Create list pop range operation.
Server returns items starting at specified index to the end of list and removes those items
from list bin.
|
![]() ![]() | PopRange(String, Int32, Int32) |
Create list pop range operation.
Server returns "count" items starting at specified index and removes items from list bin.
|
![]() ![]() | Remove |
Create list remove operation.
Server removes item at specified index from list bin.
Server returns number of items removed.
|
![]() ![]() | RemoveRange(String, Int32) |
Create list remove range operation.
Server removes items starting at specified index to the end of list.
Server returns number of items removed.
|
![]() ![]() | RemoveRange(String, Int32, Int32) |
Create list remove range operation.
Server removes "count" items starting at specified index from list bin.
Server returns number of items removed.
|
![]() ![]() | Set |
Create list set operation.
Server sets item value at specified index in list bin.
Server does not return a result by default.
|
![]() ![]() | Size |
Create list size operation.
Server returns size of list.
|
![]() ![]() | Trim |
Create list trim operation.
Server removes "count" items in list bin that do not fall into range specified
by index and count range. If the range is out of bounds, then all items will be removed.
Server returns list size after trim.
|
See Also