Click or drag to resize

StreamCollection Class

A stream collection.
Inheritance Hierarchy
SystemObject
  FM.IceLinkCollectionStream, StreamCollection
    FM.IceLinkStreamCollection

Namespace:  FM.IceLink
Assembly:  FM.IceLink (in FM.IceLink.dll) Version: 3.2.2.607 (3.2.2.607)

The StreamCollection type exposes the following members.

Constructors
  NameDescription
Public methodStreamCollection
Initializes a new instance of the StreamCollection class
Top
Properties
Methods
  NameDescription
Public methodAdd
Adds a value.
(Inherited from CollectionT, TCollection.)
Public methodAddMany
Adds some values.
(Inherited from CollectionT, TCollection.)
Protected methodAddSuccess
Invoked when an element is added to the collection.
(Inherited from CollectionT, TCollection.)
Public methodAny
Determined whether the collection contains at least one value.
(Inherited from CollectionT, TCollection.)
Public methodAny(Function1T, Boolean)
Determined whether the collection contains at least one value that matches the specified predicate.
(Inherited from CollectionT, TCollection.)
Protected methodArrayFromList
Creates an array from a list.
(Overrides CollectionT, TCollectionArrayFromList(ListT).)
Public methodContains
Determines whether the collection contains a value.
(Inherited from CollectionT, TCollection.)
Protected methodCreateCollection
Creates a collection.
(Overrides CollectionT, TCollectionCreateCollection.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodFirst
Gets the first value. Throws an exception if there are no values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodFirst(Function1T, Boolean)
Gets the first value that matches the specified predicate. Throws an exception if there are no such values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodFirstOrDefault
Gets the first value. Returns a default value if there are no values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodFirstOrDefault(Function1T, Boolean)
Gets the first value that matches the specified predicate. Returns a default value if there are no such values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodForEach
Executes a callback function once per value.
(Inherited from CollectionT, TCollection.)
Public methodGetByTypeT
Gets a stream by its type.
Public methodGetHashCode (Inherited from Object.)
Public methodGetManyByTypeT
Gets some streams by their type.
Public methodGetType (Inherited from Object.)
Public methodLast
Gets the last value. Throws an exception if there are no values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodLast(Function1T, Boolean)
Gets the last value that matches the specified predicate. Throws an exception if there are no such values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodLastOrDefault
Gets the last value. Returns a default value if there are no values in the collection.
(Inherited from CollectionT, TCollection.)
Public methodLastOrDefault(Function1T, Boolean)
Gets the last value that matches the specified predicate. Returns a default value if there are no such values in the collection.
(Inherited from CollectionT, TCollection.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodRemove
Removes a value.
(Inherited from CollectionT, TCollection.)
Public methodRemoveAll
Removes all values.
(Inherited from CollectionT, TCollection.)
Public methodRemoveFirst
Removes the first value.
(Inherited from CollectionT, TCollection.)
Public methodRemoveFirst(Function1T, Boolean)
Removes the first value that matches a given condition.
(Inherited from CollectionT, TCollection.)
Public methodRemoveLast
Removes the last value.
(Inherited from CollectionT, TCollection.)
Public methodRemoveLast(Function1T, Boolean)
Removes the last value that matches a given condition.
(Inherited from CollectionT, TCollection.)
Public methodRemoveMany
Removes some values.
(Inherited from CollectionT, TCollection.)
Protected methodRemoveSuccess
Invoked when an element is removed from the collection.
(Inherited from CollectionT, TCollection.)
Public methodReplace
Replaces the collection with a new set of values.
(Inherited from CollectionT, TCollection.)
Public methodSingle
Gets the only value. Throws an exception if there are no values or more than one value in the collection.
(Inherited from CollectionT, TCollection.)
Public methodSingle(Function1T, Boolean)
Gets the only value that matches the specified predicate. Throws an exception if there are no values or more than one value in the collection.
(Inherited from CollectionT, TCollection.)
Public methodSingleOrDefault
Gets the only value. Returns a default value if there are no values or more than one value in the collection.
(Inherited from CollectionT, TCollection.)
Public methodSingleOrDefault(Function1T, Boolean)
Gets the only value that matches the specified predicate. Returns a default value if there are no values or more than one value in the collection.
(Inherited from CollectionT, TCollection.)
Public methodToString (Inherited from Object.)
Public methodValueAt
Gets the value at the specified index. Throws an exception if a value does not exist at that index.
(Inherited from CollectionT, TCollection.)
Public methodValueAtOrDefault
Gets the value at the specified index. Returns a default value if a value does not exist at that index.
(Inherited from CollectionT, TCollection.)
Public methodWhere
Creates a new collection with values that match the specified predicate.
(Inherited from CollectionT, TCollection.)
Top
See Also