Click or drag to resize

ISharedListT Interface

Represents a collection of objects that can be individually accessed by index and that can be modified across application domain boundaries.

Namespace:  EBP.Framework.Common.Interfaces.Shared
Assembly:  EBP.Framework.Common.Interfaces (in EBP.Framework.Common.Interfaces.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
public interface ISharedList<T> : ISharedCollection<T>, 
	ISharedEnumerable<T>, IEnumerable<T>, IEnumerable

Type Parameters

T
The type of elements in the list.

The ISharedListT type exposes the following members.

Properties
Methods
  NameDescription
Public methodAdd (Inherited from ISharedCollectionT.)
Public methodClear (Inherited from ISharedCollectionT.)
Public methodContains (Inherited from ISharedCollectionT.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from ISharedEnumerableT.)
Public methodIndexOf
Determines the index of a specific item in the ISharedListT.
Public methodInsert
Inserts an item to the ISharedListT at the specified index.
Public methodRemove (Inherited from ISharedCollectionT.)
Public methodRemoveAt
Removes the ISharedListT item at the specified index.
Top
See Also