The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

NullErrorObservable<T> Class

NullErrorObservable<T> Class

Inheritance Hierarchy

System.Object
  ReactiveTests.NullErrorObservable<T>

Namespace:  ReactiveTests
Assembly:  Tests.System.Reactive (in Tests.System.Reactive.dll)

Syntax

'Declaration
Public Class NullErrorObservable(Of T) _
    Implements IObservable(Of T)
'Usage
Dim instance As NullErrorObservable(Of T)
public class NullErrorObservable<T> : IObservable<T>
generic<typename T>
public ref class NullErrorObservable : IObservable<T>
type NullErrorObservable<'T> =  
    class
        interface IObservable<'T>
    end
JScript does not support generic types and methods.

Type Parameters

  • T

The NullErrorObservable<T> type exposes the following members.

Methods

NameDescriptionPublic methodEquals(Inherited from Object.)Protected methodFinalize(Inherited from Object.)Public methodGetHashCode(Inherited from Object.)Public methodGetType(Inherited from Object.)Protected methodMemberwiseClone(Inherited from Object.)Public methodSubscribePublic methodToString(Inherited from Object.)Top

Extension Methods

NameDescriptionPublic Extension MethodAggregate(Func<T, T, T>)Overloaded. Applies an accumulator function over an observable sequence. (Defined by Observable.)Public Extension MethodAggregate<T, TAccumulate>(TAccumulate, Func<TAccumulate, T, TAccumulate>)Overloaded. Applies an accumulator function over an observable sequence with the specified seed value. (Defined by Observable.)Public Extension MethodAllDetermines whether all elements of an observable sequence satisfies a condition. (Defined by Observable.)Public Extension MethodAmbPropagates the observable sequence that reacts first with the specified first and second sequence. (Defined by Observable.)Public Extension MethodAnd<T, TRight>Matches when both observable sequences have an available value. (Defined by Observable.)Public Extension MethodAny()Overloaded. Determines whether an observable sequence contains any elements. (Defined by Observable.)Public Extension MethodAny(Func<T, Boolean>)Overloaded. Determines whether all elements of an observable sequence satisfies a condition. (Defined by Observable.)Public Extension MethodAsObservableHides the identity of an observable sequence. (Defined by Observable.)Public Extension MethodAsQbservableConverts an observable sequence into a queryable observable sequence. (Defined by Qbservable.)Public Extension MethodAssertEqual(Defined by Extensions.)Public Extension MethodBuffer(Int32)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(Int32, Int32)Overloaded. Indicates each element of an observable sequence into zero or more buffers which are produced based on element count information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, IScheduler)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, TimeSpan)Overloaded. Indicates each element of an observable sequence into zero or more buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, Int32)Overloaded. Indicates each element of an observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, TimeSpan, IScheduler)Overloaded. Indicates each element of an observable sequence into zero or more buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, Int32, IScheduler)Overloaded. Indicates each element of an observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodBuffer<T, TBufferClosing>(Func<IObservable>)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers. (Defined by Observable.)Public Extension MethodBuffer<T, TBufferOpening, TBufferClosing>(IObservable, Func<TBufferOpening, IObservable>)Overloaded. Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers. (Defined by Observable.)Public Extension MethodCatch(IObservable)Overloaded. Continues an observable sequence that is terminated by an exception with the next observable sequence. (Defined by Observable.)Public Extension MethodCatch<T, TException>(Func<TException, IObservable>)Overloaded. Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler. (Defined by Observable.)Public Extension MethodCombineLatest<T, TSecond, TResult>Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element. (Defined by Observable.)Public Extension MethodConcatConcatenates two observable sequences. (Defined by Observable.)Public Extension MethodContains(T)Overloaded. Determines whether an observable sequence contains a specified element by using the default equality comparer. (Defined by Observable.)Public Extension MethodContains(T, IEqualityComparer)Overloaded. Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>. (Defined by Observable.)Public Extension MethodCountReturns a Int32 that represents the total number of elements in an observable sequence. (Defined by Observable.)Public Extension MethodDefaultIfEmpty()Overloaded. Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty. (Defined by Observable.)Public Extension MethodDefaultIfEmpty(T)Overloaded. Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty. (Defined by Observable.)Public Extension MethodDelay(TimeSpan)Overloaded. Indicates the observable sequence by due time with the specified source and dueTime. (Defined by Observable.)Public Extension MethodDelay(DateTimeOffset)Overloaded. Indicates the observable sequence by due time with the specified source and dueTime. (Defined by Observable.)Public Extension MethodDelay(TimeSpan, IScheduler)Overloaded. Indicates the observable sequence by due time with the specified source, dueTime and scheduler. (Defined by Observable.)Public Extension MethodDelay(DateTimeOffset, IScheduler)Overloaded. Indicates the observable sequence by due time with the specified source, dueTime and scheduler. (Defined by Observable.)Public Extension MethodDistinct()Overloaded. Returns an observable sequence that contains only distinct elements with a specified source. (Defined by Observable.)Public Extension MethodDistinct(IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct elements according to the comparer. (Defined by Observable.)Public Extension MethodDistinct<T, TKey>(Func<T, TKey>)Overloaded. Returns an observable sequence that contains only distinct elements according to the keySelector. (Defined by Observable.)Public Extension MethodDistinct<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct elements according to the keySelector. (Defined by Observable.)Public Extension MethodDistinctUntilChanged()Overloaded. Returns an observable sequence that contains only distinct contiguous elements with a specified source. (Defined by Observable.)Public Extension MethodDistinctUntilChanged(IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct contiguous elements according to the comparer. (Defined by Observable.)Public Extension MethodDistinctUntilChanged<T, TKey>(Func<T, TKey>)Overloaded. Returns an observable sequence that contains only distinct contiguous elements according to the keySelector. (Defined by Observable.)Public Extension MethodDistinctUntilChanged<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. (Defined by Observable.)Public Extension MethodDo(Action)Overloaded. Invokes an action for each element in the observable sequence. (Defined by Observable.)Public Extension MethodDo(IObserver)Overloaded. Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence. (Defined by Observable.)Public Extension MethodDo(Action, Action)Overloaded. Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence. (Defined by Observable.)Public Extension MethodDo(Action, Action)Overloaded. Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence. (Defined by Observable.)Public Extension MethodDo(Action, Action, Action)Overloaded. Invokes an action for each element in the observable sequence, and invokes an action upon graceful or exceptional termination of the observable sequence. (Defined by Observable.)Public Extension MethodElementAtReturns the element at a specified index in a sequence. (Defined by Observable.)Public Extension MethodElementAtOrDefaultReturns the element at a specified index in a sequence or a default value if the index is out of range. (Defined by Observable.)Public Extension MethodFinallyInvokes a specified action after source observable sequence terminates normally or by an exception. (Defined by Observable.)Public Extension MethodFirst()Overloaded. Returns the first element of an observable sequence with a specified source. (Defined by Observable.)Public Extension MethodFirst(Func<T, Boolean>)Overloaded. Returns the first element of an observable sequence that matches the predicate. (Defined by Observable.)Public Extension MethodFirstOrDefault()Overloaded. Returns the first element of an observable sequence, or a default value if no value is found. (Defined by Observable.)Public Extension MethodFirstOrDefault(Func<T, Boolean>)Overloaded. Returns the first element of an observable sequence that matches the predicate, or a default value if no value is found. (Defined by Observable.)Public Extension MethodFoo<T, R>(Defined by MyExt.)Public Extension MethodForEachInvokes an action for each element in the observable sequence, and blocks until the sequence is terminated. (Defined by Observable.)Public Extension MethodGetEnumeratorReturns an enumerator that enumerates all values of the observable sequence. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey>(Func<T, TKey>)Overloaded. Groups the elements of an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)Overloaded. Groups the elements of an observable sequence and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TDuration>(Func<T, TKey>, Func<IGroupedObservable<TKey, T>, IObservable>)Overloaded. Groups the elements of an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TDuration>(Func<T, TKey>, Func<IGroupedObservable<TKey, T>, IObservable>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TElement, TDuration>(Func<T, TKey>, Func<T, TElement>, Func<IGroupedObservable<TKey, TElement>, IObservable>)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TElement, TDuration>(Func<T, TKey>, Func<T, TElement>, Func<IGroupedObservable<TKey, TElement>, IObservable>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupJoin<T, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations, and groups the results. (Defined by Observable.)Public Extension MethodIgnoreElementsIgnores all values in an observable sequence leaving only the termination messages. (Defined by Observable.)Public Extension MethodJoin<T, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations. (Defined by Observable.)Public Extension MethodLast()Overloaded. Returns the last element of an observable sequence with a specified source. (Defined by Observable.)Public Extension MethodLast(Func<T, Boolean>)Overloaded. Returns the last element of an observable sequence that matches the predicate. (Defined by Observable.)Public Extension MethodLastOrDefault()Overloaded. Returns last element in the observable sequence, or a default value if no value is found. (Defined by Observable.)Public Extension MethodLastOrDefault(Func<T, Boolean>)Overloaded. Returns the last element of an observable sequence that matches the predicate, or a default value if no value is found. (Defined by Observable.)Public Extension MethodLatestSamples the most recent value in an observable sequence. (Defined by Observable.)Public Extension MethodLongCountReturns a Int64 that represents the total number of elements in an observable sequence. (Defined by Observable.)Public Extension MethodMaterializeMaterializes the implicit notifications of an observable sequence as explicit notification values. (Defined by Observable.)Public Extension MethodMax()Overloaded. Returns the maximum element in an observable sequence. (Defined by Observable.)Public Extension MethodMax(IComparer)Overloaded. Returns the maximum value in an observable sequence according to the specified comparer. (Defined by Observable.)Public Extension MethodMaxBy<T, TKey>(Func<T, TKey>)Overloaded. Returns the elements in an observable sequence with the maximum key value. (Defined by Observable.)Public Extension MethodMaxBy<T, TKey>(Func<T, TKey>, IComparer)Overloaded. Returns the elements in an observable sequence with the maximum key value. (Defined by Observable.)Public Extension MethodMerge(IObservable)Overloaded. Merges an observable sequence of observable sequences into an observable sequence. (Defined by Observable.)Public Extension MethodMerge(IObservable, IScheduler)Overloaded. Merges two observable sequences into a single observable sequence. (Defined by Observable.)Public Extension MethodMin()Overloaded. Returns the minimum element in an observable sequence. (Defined by Observable.)Public Extension MethodMin(IComparer)Overloaded. Returns the minimum value in an observable sequence according to the specified comparer. (Defined by Observable.)Public Extension MethodMinBy<T, TKey>(Func<T, TKey>)Overloaded. Returns the elements in an observable sequence with the minimum key value. (Defined by Observable.)Public Extension MethodMinBy<T, TKey>(Func<T, TKey>, IComparer)Overloaded. Returns the elements in an observable sequence with the minimum key value according to the specified comparer. (Defined by Observable.)Public Extension MethodMostRecentSamples the most recent value in an observable sequence. (Defined by Observable.)Public Extension MethodMulticast<T, TResult>(ISubject<T, TResult>)Overloaded. Returns a connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. (Defined by Observable.)Public Extension MethodMulticast<T, TIntermediate, TResult>(Func<ISubject<T, TIntermediate>>, Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. (Defined by Observable.)Public Extension MethodNextSamples the next value (blocking without buffering) from in an observable sequence. (Defined by Observable.)Public Extension MethodObserveOn(SynchronizationContext)Overloaded. Asynchronously notify observers on the specified synchronization context. (Defined by Observable.)Public Extension MethodObserveOn(Control)Overloaded. (Defined by ControlObservable.)Public Extension MethodObserveOn(Dispatcher)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodObserveOn(DispatcherScheduler)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodObserveOn(IScheduler)Overloaded. Asynchronously notify observers on the specified scheduler. (Defined by Observable.)Public Extension MethodObserveOnDispatcher(Defined by DispatcherObservable.)Public Extension MethodOnErrorResumeNextContinues an observable sequence that is terminated normally or by an exception with the next observable sequence. (Defined by Observable.)Public Extension MethodPublish()Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence. (Defined by Observable.)Public Extension MethodPublish(T)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. (Defined by Observable.)Public Extension MethodPublish<T, TResult>(Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence. (Defined by Observable.)Public Extension MethodPublish<T, TResult>(Func<IObservable, IObservable>, T)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. (Defined by Observable.)Public Extension MethodPublishLast()Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. (Defined by Observable.)Public Extension MethodPublishLast<T, TResult>(Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. (Defined by Observable.)Public Extension MethodRepeat()Overloaded. Repeats the observable sequence indefinitely. (Defined by Observable.)Public Extension MethodRepeat(Int32)Overloaded. Repeats the observable sequence indefinitely. (Defined by Observable.)Public Extension MethodReplay()Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. (Defined by Observable.)Public Extension MethodReplay(TimeSpan)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay(Int32)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay(IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. (Defined by Observable.)Public Extension MethodReplay(TimeSpan, IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay(Int32, IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay(Int32, TimeSpan)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodReplay(Int32, TimeSpan, IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initial value. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, TimeSpan)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, TimeSpan, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32, TimeSpan)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32, TimeSpan, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodRetry()Overloaded. Repeats the source observable sequence until it successfully terminates. (Defined by Observable.)Public Extension MethodRetry(Int32)Overloaded. Repeats the source observable sequence until it successfully terminates. (Defined by Observable.)Public Extension MethodSample(TimeSpan)Overloaded. Samples the observable sequence at each interval. (Defined by Observable.)Public Extension MethodSample(TimeSpan, IScheduler)Overloaded. Samples the observable sequence at each interval with the specified source, interval and scheduler. (Defined by Observable.)Public Extension MethodSample<T, TSample>(IObservable)Overloaded. Samples the observable sequence at sampling ticks with the specified source and sampler. (Defined by Observable.)Public Extension MethodScan(Func<T, T, T>)Overloaded. Applies an accumulator function over an observable sequence and returns each intermediate result with the specified source and accumulator. (Defined by Observable.)Public Extension MethodScan<T, TAccumulate>(TAccumulate, Func<TAccumulate, T, TAccumulate>)Overloaded. Applies an accumulator function over an observable sequence and returns each intermediate result with the specified source, seed and accumulator. (Defined by Observable.)Public Extension MethodSelect<T, TResult>(Func<T, TResult>)Overloaded. Projects each element of an observable sequence into a new form with the specified source and selector. (Defined by Observable.)Public Extension MethodSelect<T, TResult>(Func<T, Int32, TResult>)Overloaded. Projects each element of an observable sequence into a new form by incorporating the element’s index with the specified source and selector. (Defined by Observable.)Public Extension MethodSelectMany<T, TOther>(IObservable)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TResult>(Func<T, IObservable>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TResult>(Func<T, IEnumerable>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TResult>(Func<T, IObservable>, Func<Exception, IObservable>, Func<IObservable>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TCollection, TResult>(Func<T, IEnumerable>, Func<T, TCollection, TResult>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TCollection, TResult>(Func<T, IObservable>, Func<T, TCollection, TResult>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSequenceEqual(IObservable)Overloaded. Determines whether two sequences are equal by comparing the elements pairwise. (Defined by Observable.)Public Extension MethodSequenceEqual(IObservable, IEqualityComparer)Overloaded. Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer. (Defined by Observable.)Public Extension MethodSingle()Overloaded. Returns the only element of an observable sequence and throws an exception if there is not exactly one element in the observable sequence. (Defined by Observable.)Public Extension MethodSingle(Func<T, Boolean>)Overloaded. Returns the only element of an observable sequence that matches the predicate and throws an exception if there is not exactly one element in the observable sequence. (Defined by Observable.)Public Extension MethodSingleOrDefault()Overloaded. Returns the only element of an observable sequence, or a default value if the observable sequence is empty. (Defined by Observable.)Public Extension MethodSingleOrDefault(Func<T, Boolean>)Overloaded. Returns the only element of an observable sequence that matches the predicate, or a default value if no value is found. (Defined by Observable.)Public Extension MethodSkipBypasses a specified number of values in an observable sequence and then returns the remaining values. (Defined by Observable.)Public Extension MethodSkipLastBypasses a specified number of elements at the end of an observable sequence. (Defined by Observable.)Public Extension MethodSkipUntil<T, TOther>Returns the values from the source observable sequence only after the other observable sequence produces a value. (Defined by Observable.)Public Extension MethodSkipWhile(Func<T, Boolean>)Overloaded. Bypasses values in an observable sequence as long as a specified condition is true and then returns the remaining values. (Defined by Observable.)Public Extension MethodSkipWhile(Func<T, Int32, Boolean>)Overloaded. Bypasses values in an observable sequence as long as a specified condition is true and then returns the remaining values. (Defined by Observable.)Public Extension MethodStartWith(array<T[])Overloaded. Prepends a sequence of values to an observable sequence with the specified source and values. (Defined by Observable.)Public Extension MethodStartWith(IScheduler, array<T[])Overloaded. Prepends a sequence of values to an observable sequence with the specified source, scheduler and values. (Defined by Observable.)Public Extension MethodSubscribe()Overloaded. Evaluates the observable sequence with a specified source. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action)Overloaded. Subscribes an element handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action, Action)Overloaded. Subscribes an element handler and an exception handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action, Action)Overloaded. Subscribes an element handler and a completion handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action, Action, Action)Overloaded. Subscribes an element handler, an exception handler, and a completion handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribeOn(SynchronizationContext)Overloaded. Asynchronously subscribes and unsubscribes observers on the specified synchronization context. (Defined by Observable.)Public Extension MethodSubscribeOn(Control)Overloaded. (Defined by ControlObservable.)Public Extension MethodSubscribeOn(Dispatcher)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodSubscribeOn(DispatcherScheduler)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodSubscribeOn(IScheduler)Overloaded. Asynchronously subscribes and unsubscribes observers on the specified scheduler. (Defined by Observable.)Public Extension MethodSubscribeOnDispatcher(Defined by DispatcherObservable.)Public Extension MethodSynchronize()Overloaded. Synchronizes the observable sequence. (Defined by Observable.)Public Extension MethodSynchronize(Object)Overloaded. Synchronizes the observable sequence. (Defined by Observable.)Public Extension MethodTakeReturns a specified number of contiguous values from the start of an observable sequence. (Defined by Observable.)Public Extension MethodTakeLastReturns a specified number of contiguous elements from the end of an observable sequence. (Defined by Observable.)Public Extension MethodTakeUntil<T, TOther>Returns the values from the source observable sequence until the other observable sequence produces a value. (Defined by Observable.)Public Extension MethodTakeWhile(Func<T, Boolean>)Overloaded. Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values. (Defined by Observable.)Public Extension MethodTakeWhile(Func<T, Int32, Boolean>)Overloaded. Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values. (Defined by Observable.)Public Extension MethodThen<T, TResult>Matches when the observable sequence has an available value and projects the value. (Defined by Observable.)Public Extension MethodThrottle(TimeSpan)Overloaded. Ignores the values from an observable sequence which are followed by another value before due time with the specified source and dueTime. (Defined by Observable.)Public Extension MethodThrottle(TimeSpan, IScheduler)Overloaded. Ignores the values from an observable sequence which are followed by another value before due time with the specified source, dueTime and scheduler. (Defined by Observable.)Public Extension MethodTimeInterval()Overloaded. Records the time interval between consecutive values in an observable sequence with the specified source. (Defined by Observable.)Public Extension MethodTimeInterval(IScheduler)Overloaded. Records the time interval between consecutive values in an observable sequence with the specified source and scheduler. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset)Overloaded. Returns either the observable sequence or a TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan, IObservable)Overloaded. Returns the source observable sequence or the other observable sequence if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset, IObservable)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan, IScheduler)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset, IScheduler)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan, IObservable, IScheduler)Overloaded. Returns the source observable sequence or the other observable sequence if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset, IObservable, IScheduler)Overloaded. Returns the source observable sequence or the other observable sequence if dueTime elapses. (Defined by Observable.)Public Extension MethodTimestamp()Overloaded. Records the timestamp for each value in an observable sequence with the specified source. (Defined by Observable.)Public Extension MethodTimestamp(IScheduler)Overloaded. Records the timestamp for each value in an observable sequence with the specified source and scheduler. (Defined by Observable.)Public Extension MethodToArrayCreates an array from an observable sequence. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey>(Func<T, TKey>)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function. (Defined by Observable.)Public Extension MethodToEnumerableConverts an observable sequence to an enumerable sequence. (Defined by Observable.)Public Extension MethodToEventExposes an observable sequence as an object with a .NET event with a specified source. (Defined by Observable.)Public Extension MethodToListCreates a list from an observable sequence. (Defined by Observable.)Public Extension MethodToLookup<T, TKey>(Func<T, TKey>)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodToLookup<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function, and a comparer. (Defined by Observable.)Public Extension MethodToLookup<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function. (Defined by Observable.)Public Extension MethodToLookup<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function. (Defined by Observable.)Public Extension MethodToTask()Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodToTask(Object)Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodToTask(CancellationToken)Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodToTask(CancellationToken, Object)Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodWhere(Func<T, Boolean>)Overloaded. Filters the elements of an observable sequence based on a predicate. (Defined by Observable.)Public Extension MethodWhere(Func<T, Int32, Boolean>)Overloaded. Filters the elements of an observable sequence based on a predicate by incorporating the element's index. (Defined by Observable.)Public Extension MethodWindow(Int32)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(Int32, Int32)Overloaded. Projects each element of an observable sequence into zero or more windows which are produced based on element count information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, IScheduler)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, TimeSpan)Overloaded. Projects each element of an observable sequence into zero or more windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, Int32)Overloaded. Projects each element of an observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, TimeSpan, IScheduler)Overloaded. Projects each element of an observable sequence into zero or more windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, Int32, IScheduler)Overloaded. Projects each element of an observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodWindow<T, TWindowClosing>(Func<IObservable>)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows. (Defined by Observable.)Public Extension MethodWindow<T, TWindowOpening, TWindowClosing>(IObservable, Func<TWindowOpening, IObservable>)Overloaded. Projects each element of an observable sequence into zero or more windows. (Defined by Observable.)Public Extension MethodZip<T, TSecond, TResult>(IObservable, Func<T, TSecond, TResult>)Overloaded. Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion. (Defined by Observable.)Public Extension MethodZip<T, TSecond, TResult>(IEnumerable, Func<T, TSecond, TResult>)Overloaded. Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function. (Defined by Observable.)Top

Fields

NameDescriptionPublic fieldStatic memberInstanceTop

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

ReactiveTests Namespace

NullErrorObservable<T> Methods

Include Protected Members
Include Inherited Members

The NullErrorObservable<T> type exposes the following members.

Methods

NameDescriptionPublic methodEquals(Inherited from Object.)Protected methodFinalize(Inherited from Object.)Public methodGetHashCode(Inherited from Object.)Public methodGetType(Inherited from Object.)Protected methodMemberwiseClone(Inherited from Object.)Public methodSubscribePublic methodToString(Inherited from Object.)Top

Extension Methods

NameDescriptionPublic Extension MethodAggregate(Func<T, T, T>)Overloaded. Applies an accumulator function over an observable sequence. (Defined by Observable.)Public Extension MethodAggregate<T, TAccumulate>(TAccumulate, Func<TAccumulate, T, TAccumulate>)Overloaded. Applies an accumulator function over an observable sequence with the specified seed value. (Defined by Observable.)Public Extension MethodAllDetermines whether all elements of an observable sequence satisfies a condition. (Defined by Observable.)Public Extension MethodAmbPropagates the observable sequence that reacts first with the specified first and second sequence. (Defined by Observable.)Public Extension MethodAnd<T, TRight>Matches when both observable sequences have an available value. (Defined by Observable.)Public Extension MethodAny()Overloaded. Determines whether an observable sequence contains any elements. (Defined by Observable.)Public Extension MethodAny(Func<T, Boolean>)Overloaded. Determines whether all elements of an observable sequence satisfies a condition. (Defined by Observable.)Public Extension MethodAsObservableHides the identity of an observable sequence. (Defined by Observable.)Public Extension MethodAsQbservableConverts an observable sequence into a queryable observable sequence. (Defined by Qbservable.)Public Extension MethodAssertEqual(Defined by Extensions.)Public Extension MethodBuffer(Int32)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(Int32, Int32)Overloaded. Indicates each element of an observable sequence into zero or more buffers which are produced based on element count information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, IScheduler)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, TimeSpan)Overloaded. Indicates each element of an observable sequence into zero or more buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, Int32)Overloaded. Indicates each element of an observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, TimeSpan, IScheduler)Overloaded. Indicates each element of an observable sequence into zero or more buffers which are produced based on timing information. (Defined by Observable.)Public Extension MethodBuffer(TimeSpan, Int32, IScheduler)Overloaded. Indicates each element of an observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodBuffer<T, TBufferClosing>(Func<IObservable>)Overloaded. Indicates each element of an observable sequence into consecutive non-overlapping buffers. (Defined by Observable.)Public Extension MethodBuffer<T, TBufferOpening, TBufferClosing>(IObservable, Func<TBufferOpening, IObservable>)Overloaded. Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers. (Defined by Observable.)Public Extension MethodCatch(IObservable)Overloaded. Continues an observable sequence that is terminated by an exception with the next observable sequence. (Defined by Observable.)Public Extension MethodCatch<T, TException>(Func<TException, IObservable>)Overloaded. Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler. (Defined by Observable.)Public Extension MethodCombineLatest<T, TSecond, TResult>Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element. (Defined by Observable.)Public Extension MethodConcatConcatenates two observable sequences. (Defined by Observable.)Public Extension MethodContains(T)Overloaded. Determines whether an observable sequence contains a specified element by using the default equality comparer. (Defined by Observable.)Public Extension MethodContains(T, IEqualityComparer)Overloaded. Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>. (Defined by Observable.)Public Extension MethodCountReturns a Int32 that represents the total number of elements in an observable sequence. (Defined by Observable.)Public Extension MethodDefaultIfEmpty()Overloaded. Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty. (Defined by Observable.)Public Extension MethodDefaultIfEmpty(T)Overloaded. Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty. (Defined by Observable.)Public Extension MethodDelay(TimeSpan)Overloaded. Indicates the observable sequence by due time with the specified source and dueTime. (Defined by Observable.)Public Extension MethodDelay(DateTimeOffset)Overloaded. Indicates the observable sequence by due time with the specified source and dueTime. (Defined by Observable.)Public Extension MethodDelay(TimeSpan, IScheduler)Overloaded. Indicates the observable sequence by due time with the specified source, dueTime and scheduler. (Defined by Observable.)Public Extension MethodDelay(DateTimeOffset, IScheduler)Overloaded. Indicates the observable sequence by due time with the specified source, dueTime and scheduler. (Defined by Observable.)Public Extension MethodDistinct()Overloaded. Returns an observable sequence that contains only distinct elements with a specified source. (Defined by Observable.)Public Extension MethodDistinct(IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct elements according to the comparer. (Defined by Observable.)Public Extension MethodDistinct<T, TKey>(Func<T, TKey>)Overloaded. Returns an observable sequence that contains only distinct elements according to the keySelector. (Defined by Observable.)Public Extension MethodDistinct<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct elements according to the keySelector. (Defined by Observable.)Public Extension MethodDistinctUntilChanged()Overloaded. Returns an observable sequence that contains only distinct contiguous elements with a specified source. (Defined by Observable.)Public Extension MethodDistinctUntilChanged(IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct contiguous elements according to the comparer. (Defined by Observable.)Public Extension MethodDistinctUntilChanged<T, TKey>(Func<T, TKey>)Overloaded. Returns an observable sequence that contains only distinct contiguous elements according to the keySelector. (Defined by Observable.)Public Extension MethodDistinctUntilChanged<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. (Defined by Observable.)Public Extension MethodDo(Action)Overloaded. Invokes an action for each element in the observable sequence. (Defined by Observable.)Public Extension MethodDo(IObserver)Overloaded. Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence. (Defined by Observable.)Public Extension MethodDo(Action, Action)Overloaded. Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence. (Defined by Observable.)Public Extension MethodDo(Action, Action)Overloaded. Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence. (Defined by Observable.)Public Extension MethodDo(Action, Action, Action)Overloaded. Invokes an action for each element in the observable sequence, and invokes an action upon graceful or exceptional termination of the observable sequence. (Defined by Observable.)Public Extension MethodElementAtReturns the element at a specified index in a sequence. (Defined by Observable.)Public Extension MethodElementAtOrDefaultReturns the element at a specified index in a sequence or a default value if the index is out of range. (Defined by Observable.)Public Extension MethodFinallyInvokes a specified action after source observable sequence terminates normally or by an exception. (Defined by Observable.)Public Extension MethodFirst()Overloaded. Returns the first element of an observable sequence with a specified source. (Defined by Observable.)Public Extension MethodFirst(Func<T, Boolean>)Overloaded. Returns the first element of an observable sequence that matches the predicate. (Defined by Observable.)Public Extension MethodFirstOrDefault()Overloaded. Returns the first element of an observable sequence, or a default value if no value is found. (Defined by Observable.)Public Extension MethodFirstOrDefault(Func<T, Boolean>)Overloaded. Returns the first element of an observable sequence that matches the predicate, or a default value if no value is found. (Defined by Observable.)Public Extension MethodFoo<T, R>(Defined by MyExt.)Public Extension MethodForEachInvokes an action for each element in the observable sequence, and blocks until the sequence is terminated. (Defined by Observable.)Public Extension MethodGetEnumeratorReturns an enumerator that enumerates all values of the observable sequence. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey>(Func<T, TKey>)Overloaded. Groups the elements of an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)Overloaded. Groups the elements of an observable sequence and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupBy<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TDuration>(Func<T, TKey>, Func<IGroupedObservable<TKey, T>, IObservable>)Overloaded. Groups the elements of an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TDuration>(Func<T, TKey>, Func<IGroupedObservable<TKey, T>, IObservable>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TElement, TDuration>(Func<T, TKey>, Func<T, TElement>, Func<IGroupedObservable<TKey, TElement>, IObservable>)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupByUntil<T, TKey, TElement, TDuration>(Func<T, TKey>, Func<T, TElement>, Func<IGroupedObservable<TKey, TElement>, IObservable>, IEqualityComparer)Overloaded. Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. (Defined by Observable.)Public Extension MethodGroupJoin<T, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations, and groups the results. (Defined by Observable.)Public Extension MethodIgnoreElementsIgnores all values in an observable sequence leaving only the termination messages. (Defined by Observable.)Public Extension MethodJoin<T, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations. (Defined by Observable.)Public Extension MethodLast()Overloaded. Returns the last element of an observable sequence with a specified source. (Defined by Observable.)Public Extension MethodLast(Func<T, Boolean>)Overloaded. Returns the last element of an observable sequence that matches the predicate. (Defined by Observable.)Public Extension MethodLastOrDefault()Overloaded. Returns last element in the observable sequence, or a default value if no value is found. (Defined by Observable.)Public Extension MethodLastOrDefault(Func<T, Boolean>)Overloaded. Returns the last element of an observable sequence that matches the predicate, or a default value if no value is found. (Defined by Observable.)Public Extension MethodLatestSamples the most recent value in an observable sequence. (Defined by Observable.)Public Extension MethodLongCountReturns a Int64 that represents the total number of elements in an observable sequence. (Defined by Observable.)Public Extension MethodMaterializeMaterializes the implicit notifications of an observable sequence as explicit notification values. (Defined by Observable.)Public Extension MethodMax()Overloaded. Returns the maximum element in an observable sequence. (Defined by Observable.)Public Extension MethodMax(IComparer)Overloaded. Returns the maximum value in an observable sequence according to the specified comparer. (Defined by Observable.)Public Extension MethodMaxBy<T, TKey>(Func<T, TKey>)Overloaded. Returns the elements in an observable sequence with the maximum key value. (Defined by Observable.)Public Extension MethodMaxBy<T, TKey>(Func<T, TKey>, IComparer)Overloaded. Returns the elements in an observable sequence with the maximum key value. (Defined by Observable.)Public Extension MethodMerge(IObservable)Overloaded. Merges an observable sequence of observable sequences into an observable sequence. (Defined by Observable.)Public Extension MethodMerge(IObservable, IScheduler)Overloaded. Merges two observable sequences into a single observable sequence. (Defined by Observable.)Public Extension MethodMin()Overloaded. Returns the minimum element in an observable sequence. (Defined by Observable.)Public Extension MethodMin(IComparer)Overloaded. Returns the minimum value in an observable sequence according to the specified comparer. (Defined by Observable.)Public Extension MethodMinBy<T, TKey>(Func<T, TKey>)Overloaded. Returns the elements in an observable sequence with the minimum key value. (Defined by Observable.)Public Extension MethodMinBy<T, TKey>(Func<T, TKey>, IComparer)Overloaded. Returns the elements in an observable sequence with the minimum key value according to the specified comparer. (Defined by Observable.)Public Extension MethodMostRecentSamples the most recent value in an observable sequence. (Defined by Observable.)Public Extension MethodMulticast<T, TResult>(ISubject<T, TResult>)Overloaded. Returns a connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. (Defined by Observable.)Public Extension MethodMulticast<T, TIntermediate, TResult>(Func<ISubject<T, TIntermediate>>, Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. (Defined by Observable.)Public Extension MethodNextSamples the next value (blocking without buffering) from in an observable sequence. (Defined by Observable.)Public Extension MethodObserveOn(SynchronizationContext)Overloaded. Asynchronously notify observers on the specified synchronization context. (Defined by Observable.)Public Extension MethodObserveOn(Control)Overloaded. (Defined by ControlObservable.)Public Extension MethodObserveOn(Dispatcher)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodObserveOn(DispatcherScheduler)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodObserveOn(IScheduler)Overloaded. Asynchronously notify observers on the specified scheduler. (Defined by Observable.)Public Extension MethodObserveOnDispatcher(Defined by DispatcherObservable.)Public Extension MethodOnErrorResumeNextContinues an observable sequence that is terminated normally or by an exception with the next observable sequence. (Defined by Observable.)Public Extension MethodPublish()Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence. (Defined by Observable.)Public Extension MethodPublish(T)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. (Defined by Observable.)Public Extension MethodPublish<T, TResult>(Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence. (Defined by Observable.)Public Extension MethodPublish<T, TResult>(Func<IObservable, IObservable>, T)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. (Defined by Observable.)Public Extension MethodPublishLast()Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. (Defined by Observable.)Public Extension MethodPublishLast<T, TResult>(Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. (Defined by Observable.)Public Extension MethodRepeat()Overloaded. Repeats the observable sequence indefinitely. (Defined by Observable.)Public Extension MethodRepeat(Int32)Overloaded. Repeats the observable sequence indefinitely. (Defined by Observable.)Public Extension MethodReplay()Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. (Defined by Observable.)Public Extension MethodReplay(TimeSpan)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay(Int32)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay(IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. (Defined by Observable.)Public Extension MethodReplay(TimeSpan, IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay(Int32, IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay(Int32, TimeSpan)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodReplay(Int32, TimeSpan, IScheduler)Overloaded. Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initial value. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, TimeSpan)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, TimeSpan, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32, TimeSpan)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodReplay<T, TResult>(Func<IObservable, IObservable>, Int32, TimeSpan, IScheduler)Overloaded. Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. (Defined by Observable.)Public Extension MethodRetry()Overloaded. Repeats the source observable sequence until it successfully terminates. (Defined by Observable.)Public Extension MethodRetry(Int32)Overloaded. Repeats the source observable sequence until it successfully terminates. (Defined by Observable.)Public Extension MethodSample(TimeSpan)Overloaded. Samples the observable sequence at each interval. (Defined by Observable.)Public Extension MethodSample(TimeSpan, IScheduler)Overloaded. Samples the observable sequence at each interval with the specified source, interval and scheduler. (Defined by Observable.)Public Extension MethodSample<T, TSample>(IObservable)Overloaded. Samples the observable sequence at sampling ticks with the specified source and sampler. (Defined by Observable.)Public Extension MethodScan(Func<T, T, T>)Overloaded. Applies an accumulator function over an observable sequence and returns each intermediate result with the specified source and accumulator. (Defined by Observable.)Public Extension MethodScan<T, TAccumulate>(TAccumulate, Func<TAccumulate, T, TAccumulate>)Overloaded. Applies an accumulator function over an observable sequence and returns each intermediate result with the specified source, seed and accumulator. (Defined by Observable.)Public Extension MethodSelect<T, TResult>(Func<T, TResult>)Overloaded. Projects each element of an observable sequence into a new form with the specified source and selector. (Defined by Observable.)Public Extension MethodSelect<T, TResult>(Func<T, Int32, TResult>)Overloaded. Projects each element of an observable sequence into a new form by incorporating the element’s index with the specified source and selector. (Defined by Observable.)Public Extension MethodSelectMany<T, TOther>(IObservable)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TResult>(Func<T, IObservable>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TResult>(Func<T, IEnumerable>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TResult>(Func<T, IObservable>, Func<Exception, IObservable>, Func<IObservable>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TCollection, TResult>(Func<T, IEnumerable>, Func<T, TCollection, TResult>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSelectMany<T, TCollection, TResult>(Func<T, IObservable>, Func<T, TCollection, TResult>)Overloaded. Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence. (Defined by Observable.)Public Extension MethodSequenceEqual(IObservable)Overloaded. Determines whether two sequences are equal by comparing the elements pairwise. (Defined by Observable.)Public Extension MethodSequenceEqual(IObservable, IEqualityComparer)Overloaded. Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer. (Defined by Observable.)Public Extension MethodSingle()Overloaded. Returns the only element of an observable sequence and throws an exception if there is not exactly one element in the observable sequence. (Defined by Observable.)Public Extension MethodSingle(Func<T, Boolean>)Overloaded. Returns the only element of an observable sequence that matches the predicate and throws an exception if there is not exactly one element in the observable sequence. (Defined by Observable.)Public Extension MethodSingleOrDefault()Overloaded. Returns the only element of an observable sequence, or a default value if the observable sequence is empty. (Defined by Observable.)Public Extension MethodSingleOrDefault(Func<T, Boolean>)Overloaded. Returns the only element of an observable sequence that matches the predicate, or a default value if no value is found. (Defined by Observable.)Public Extension MethodSkipBypasses a specified number of values in an observable sequence and then returns the remaining values. (Defined by Observable.)Public Extension MethodSkipLastBypasses a specified number of elements at the end of an observable sequence. (Defined by Observable.)Public Extension MethodSkipUntil<T, TOther>Returns the values from the source observable sequence only after the other observable sequence produces a value. (Defined by Observable.)Public Extension MethodSkipWhile(Func<T, Boolean>)Overloaded. Bypasses values in an observable sequence as long as a specified condition is true and then returns the remaining values. (Defined by Observable.)Public Extension MethodSkipWhile(Func<T, Int32, Boolean>)Overloaded. Bypasses values in an observable sequence as long as a specified condition is true and then returns the remaining values. (Defined by Observable.)Public Extension MethodStartWith(array<T[])Overloaded. Prepends a sequence of values to an observable sequence with the specified source and values. (Defined by Observable.)Public Extension MethodStartWith(IScheduler, array<T[])Overloaded. Prepends a sequence of values to an observable sequence with the specified source, scheduler and values. (Defined by Observable.)Public Extension MethodSubscribe()Overloaded. Evaluates the observable sequence with a specified source. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action)Overloaded. Subscribes an element handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action, Action)Overloaded. Subscribes an element handler and an exception handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action, Action)Overloaded. Subscribes an element handler and a completion handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribe(Action, Action, Action)Overloaded. Subscribes an element handler, an exception handler, and a completion handler to an observable sequence. (Defined by ObservableExtensions.)Public Extension MethodSubscribeOn(SynchronizationContext)Overloaded. Asynchronously subscribes and unsubscribes observers on the specified synchronization context. (Defined by Observable.)Public Extension MethodSubscribeOn(Control)Overloaded. (Defined by ControlObservable.)Public Extension MethodSubscribeOn(Dispatcher)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodSubscribeOn(DispatcherScheduler)Overloaded. (Defined by DispatcherObservable.)Public Extension MethodSubscribeOn(IScheduler)Overloaded. Asynchronously subscribes and unsubscribes observers on the specified scheduler. (Defined by Observable.)Public Extension MethodSubscribeOnDispatcher(Defined by DispatcherObservable.)Public Extension MethodSynchronize()Overloaded. Synchronizes the observable sequence. (Defined by Observable.)Public Extension MethodSynchronize(Object)Overloaded. Synchronizes the observable sequence. (Defined by Observable.)Public Extension MethodTakeReturns a specified number of contiguous values from the start of an observable sequence. (Defined by Observable.)Public Extension MethodTakeLastReturns a specified number of contiguous elements from the end of an observable sequence. (Defined by Observable.)Public Extension MethodTakeUntil<T, TOther>Returns the values from the source observable sequence until the other observable sequence produces a value. (Defined by Observable.)Public Extension MethodTakeWhile(Func<T, Boolean>)Overloaded. Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values. (Defined by Observable.)Public Extension MethodTakeWhile(Func<T, Int32, Boolean>)Overloaded. Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values. (Defined by Observable.)Public Extension MethodThen<T, TResult>Matches when the observable sequence has an available value and projects the value. (Defined by Observable.)Public Extension MethodThrottle(TimeSpan)Overloaded. Ignores the values from an observable sequence which are followed by another value before due time with the specified source and dueTime. (Defined by Observable.)Public Extension MethodThrottle(TimeSpan, IScheduler)Overloaded. Ignores the values from an observable sequence which are followed by another value before due time with the specified source, dueTime and scheduler. (Defined by Observable.)Public Extension MethodTimeInterval()Overloaded. Records the time interval between consecutive values in an observable sequence with the specified source. (Defined by Observable.)Public Extension MethodTimeInterval(IScheduler)Overloaded. Records the time interval between consecutive values in an observable sequence with the specified source and scheduler. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset)Overloaded. Returns either the observable sequence or a TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan, IObservable)Overloaded. Returns the source observable sequence or the other observable sequence if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset, IObservable)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan, IScheduler)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset, IScheduler)Overloaded. Returns either the observable sequence or an TimeoutException if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(TimeSpan, IObservable, IScheduler)Overloaded. Returns the source observable sequence or the other observable sequence if dueTime elapses. (Defined by Observable.)Public Extension MethodTimeout(DateTimeOffset, IObservable, IScheduler)Overloaded. Returns the source observable sequence or the other observable sequence if dueTime elapses. (Defined by Observable.)Public Extension MethodTimestamp()Overloaded. Records the timestamp for each value in an observable sequence with the specified source. (Defined by Observable.)Public Extension MethodTimestamp(IScheduler)Overloaded. Records the timestamp for each value in an observable sequence with the specified source and scheduler. (Defined by Observable.)Public Extension MethodToArrayCreates an array from an observable sequence. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey>(Func<T, TKey>)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function. (Defined by Observable.)Public Extension MethodToDictionary<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer)Overloaded. Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function. (Defined by Observable.)Public Extension MethodToEnumerableConverts an observable sequence to an enumerable sequence. (Defined by Observable.)Public Extension MethodToEventExposes an observable sequence as an object with a .NET event with a specified source. (Defined by Observable.)Public Extension MethodToListCreates a list from an observable sequence. (Defined by Observable.)Public Extension MethodToLookup<T, TKey>(Func<T, TKey>)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function. (Defined by Observable.)Public Extension MethodToLookup<T, TKey>(Func<T, TKey>, IEqualityComparer)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function, and a comparer. (Defined by Observable.)Public Extension MethodToLookup<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function. (Defined by Observable.)Public Extension MethodToLookup<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer)Overloaded. Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function. (Defined by Observable.)Public Extension MethodToTask()Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodToTask(Object)Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodToTask(CancellationToken)Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodToTask(CancellationToken, Object)Overloaded. Returns a task that contains the last value of the observable sequence. (Defined by TaskObservableExtensions.)Public Extension MethodWhere(Func<T, Boolean>)Overloaded. Filters the elements of an observable sequence based on a predicate. (Defined by Observable.)Public Extension MethodWhere(Func<T, Int32, Boolean>)Overloaded. Filters the elements of an observable sequence based on a predicate by incorporating the element's index. (Defined by Observable.)Public Extension MethodWindow(Int32)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(Int32, Int32)Overloaded. Projects each element of an observable sequence into zero or more windows which are produced based on element count information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, IScheduler)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, TimeSpan)Overloaded. Projects each element of an observable sequence into zero or more windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, Int32)Overloaded. Projects each element of an observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, TimeSpan, IScheduler)Overloaded. Projects each element of an observable sequence into zero or more windows which are produced based on timing information. (Defined by Observable.)Public Extension MethodWindow(TimeSpan, Int32, IScheduler)Overloaded. Projects each element of an observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. (Defined by Observable.)Public Extension MethodWindow<T, TWindowClosing>(Func<IObservable>)Overloaded. Projects each element of an observable sequence into consecutive non-overlapping windows. (Defined by Observable.)Public Extension MethodWindow<T, TWindowOpening, TWindowClosing>(IObservable, Func<TWindowOpening, IObservable>)Overloaded. Projects each element of an observable sequence into zero or more windows. (Defined by Observable.)Public Extension MethodZip<T, TSecond, TResult>(IObservable, Func<T, TSecond, TResult>)Overloaded. Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion. (Defined by Observable.)Public Extension MethodZip<T, TSecond, TResult>(IEnumerable, Func<T, TSecond, TResult>)Overloaded. Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function. (Defined by Observable.)Top

See Also

Reference

NullErrorObservable<T> Class

ReactiveTests Namespace

NullErrorObservable<T> Fields

Include Protected Members
Include Inherited Members

The NullErrorObservable<T> type exposes the following members.

Fields

NameDescriptionPublic fieldStatic memberInstanceTop

See Also

Reference

NullErrorObservable<T> Class

ReactiveTests Namespace