LINQ Operators by Categories
This topic lists all major LINQ operators implemented by the Observable type by their categories, specifically: creation, conversion, combine, functional, mathematical, time, exceptions, miscellaneous, selection and primitives.
LINQ Operators by Categories
UsageOperatorsCreating an observable sequence
|
- Create
- Generate
- Defer
- Range
| |
Converting .NET events or asynchronous patterns to observable sequences, or between enumerators and observable sequences.
|
- FromAsyncPattern
- FromEvent
- FromEventPattern
- ToObservable
- ToEnumerable
| |
Combining multiple observable sequences into a single sequence.
|
- Amb
- Concat
- StartWith
- Merge
- Repeat
- Zip
| |
Functional
|
- Let
- Prune
- Publish
- Replay
| |
Mathemathical operators on sequences
|
- Aggregate
- Count
- Min
- Max
- Sum
| |
Time-based operations
|
- Delay
- Interval
- TimeInterval
- Timestamp
- Timeout
| |
Handling Exceptions
|
- Catch
- Finally
- Retry
- OnErrorResumeNext
| |
Miscellaneous operators
|
- Do
- Run
- Remotable
| |
Filtering and selecting values in a sequence
|
- Take
- TakeUntil/TakeWhile
- Select
- SelectMany
- Skip
- SkipUntil/SkipWhile
| |
Primitives
|
- Never
- Empty
- Return
- Throw
|## See Also