Skip to content

IDurableList<T> Methods

Represents a list whose mutations are recorded in a journal.

AddRange(IEnumerable<T>)

abstract
public abstract void AddRange(IEnumerable<T> collection)
Adds the elements of the specified collection to the end of the list.

Parameters

collectionIEnumerable<T>
The collection whose elements are added to the list.

AsReadOnly

abstract
public abstract ReadOnlyCollection<T> AsReadOnly()
Returns a read-only wrapper for the current list.

Returns

A read-only wrapper for the current list.