Click or drag to resize

ISharedCollectionT Interface

Defines methods to manipulate generic collections.

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 ISharedCollection<T> : ISharedEnumerable<T>, 
	IEnumerable<T>, IEnumerable

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:EBP.Framework.Common.Interfaces.Shared.ISharedCollection`1"]

The ISharedCollectionT type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in the ISharedCollectionT.
Public propertyIsReadOnly
Gets a value indicating whether the ISharedCollectionT is read-only.
Top
Methods
  NameDescription
Public methodAdd
Adds an item to the ISharedCollectionT.
Public methodClear
Removes all items from the ISharedCollectionT.
Public methodContains
Determines whether the ISharedCollectionT contains a specific value.
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from ISharedEnumerableT.)
Public methodRemove
Removes the first occurrence of a specific object from the ISharedCollectionT.
Top
See Also