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

Qbservable()s

Qbservable Methods

Include Protected Members
Include Inherited Members

The Qbservable type exposes the following members.

Methods

NameDescriptionPublic methodStatic memberAggregate(IQbservable, Expression<Func<TSource, TSource, TSource>>)Applies an accumulator function over a queryable observable sequence.Public methodStatic memberAggregate<TSource, TAccumulate>(IQbservable, TAccumulate, Expression<Func<TAccumulate, TSource, TAccumulate>>)Applies an accumulator function over a queryable observable sequence.Public methodStatic memberAllDetermines whether all elements of a queryable observable sequence satisfies a condition.Public methodStatic memberAmb(IQbservable, IObservable)Propagates the queryable observable sequence that reacts first with the specified first and second sequence.Public methodStatic memberAmb(IQbservableProvider, IEnumerable<IObservable>)Propagates the queryable observable sequence that reacts first with a specified sources.Public methodStatic memberAmb(IQbservableProvider, array<IObservable[])Propagates the queryable observable sequence that reacts first with a specified sources.Public methodStatic memberAnd<TLeft, TRight>Matches when both queryable observable sequences have an available value.Public methodStatic memberAny(IQbservable)Determines whether a queryable observable sequence contains any elements.Public methodStatic memberAny(IQbservable, Expression<Func<TSource, Boolean>>)Determines whether all elements of a queryable observable sequence satisfies a condition.Public methodStatic memberAsObservableHides the identity of an observable sequence.Public methodStatic memberAsQbservableConverts an observable sequence into a queryable observable sequence.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Decimal values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Double values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Int32 values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Int64 values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Decimal values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Double values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Int32 values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Int64 values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Float values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Float values.Public methodStatic memberBuffer(IQbservable, Int32)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers which are produced based on element count information.Public methodStatic memberBuffer(IQbservable, TimeSpan)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers which are produced based on timing information.Public methodStatic memberBuffer(IQbservable, Int32, Int32)Indicates each element of a queryable observable sequence into zero or more buffers which are produced based on element count information.Public methodStatic memberBuffer(IQbservable, TimeSpan, Int32)Indicates each element of a queryable observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed.Public methodStatic memberBuffer(IQbservable, TimeSpan, IScheduler)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers which are produced based on timing information.Public methodStatic memberBuffer(IQbservable, TimeSpan, TimeSpan)Indicates each element of a queryable observable sequence into zero or more buffers which are produced based on timing information.Public methodStatic memberBuffer(IQbservable, TimeSpan, Int32, IScheduler)Indicates each element of a queryable observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed.Public methodStatic memberBuffer(IQbservable, TimeSpan, TimeSpan, IScheduler)Indicates each element of a queryable observable sequence into zero or more buffers which are produced based on timing information.Public methodStatic memberBuffer<TSource, TBufferClosing>(IQbservable, Expression<Func<IObservable>>)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers.Public methodStatic memberBuffer<TSource, TBufferOpening, TBufferClosing>(IQbservable, IObservable, Expression<Func<TBufferOpening, IObservable>>)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers.Public methodStatic memberCastConverts the elements of an observable sequence to the specified type.Public methodStatic memberCatch(IQbservable, IObservable)Continues a queryable observable sequence that is terminated by an exception with the next queryable observable sequence.Public methodStatic memberCatch(IQbservableProvider, IEnumerable<IObservable>)Continues a queryable observable sequence that is terminated by an exception with the next queryableobservable sequence.Public methodStatic memberCatch(IQbservableProvider, array<IObservable[])Continues a queryable observable sequence that is terminated by an exception with the next queryable observable sequence.Public methodStatic memberCatch<TSource, TException>(IQbservable, Expression<Func<TException, IObservable>>)Continues a queryable observable sequence that is terminated by an exception of the specified type with the queryable observable sequence produced by the handler.Public methodStatic memberCombineLatest<TFirst, TSecond, TResult>Merges two queryable observable sequences into one queryable observable sequence by using the selector function whenever one of the queryable observable sequences produces an element.Public methodStatic memberConcat(IQbservable<IObservable>)Concatenates an enumerable sequence of queryable observable sequences.Public methodStatic memberConcat(IQbservable, IObservable)Concatenates two observable sequences.Public methodStatic memberConcat(IQbservableProvider, IEnumerable<IObservable>)Concatenates all the queryable observable sequences.Public methodStatic memberConcat(IQbservableProvider, array<IObservable[])Concatenates a queryable observable sequence of queryable observable sequences.Public methodStatic memberContains(IQbservable, TSource)Determines whether a queryable observable sequence contains a specified element by using the default equality comparer.Public methodStatic memberContains(IQbservable, TSource, IEqualityComparer)Determines whether an observable sequence contains a specified element by using a specified source type, source, value and comparer.Public methodStatic memberCountReturns a [System.Int32] that represents the total number of elements in a queryable observable sequence.Public methodStatic memberCreate(IQbservableProvider, Expression<Func<IObserver, Action>>)Creates a queryable observable sequence from a specified subscribe method implementation with a specified subscribe.Public methodStatic memberCreate(IQbservableProvider, Expression<Func<IObserver, IDisposable>>)Creates a queryable observable sequence from a specified subscribe method implementation with a specified subscribe.Public methodStatic memberDefaultIfEmpty(IQbservable)Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.Public methodStatic memberDefaultIfEmpty(IQbservable, TSource)Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.Public methodStatic memberDeferReturns a queryable observable sequence that invokes the observable factory whenever a new observer subscribes.Public methodStatic memberDelay(IQbservable, DateTimeOffset)Indicates the queryable observable sequence by due time with the specified source and dueTime.Public methodStatic memberDelay(IQbservable, TimeSpan)Indicates the queryable observable sequence by due time with the specified source and dueTime.Public methodStatic memberDelay(IQbservable, DateTimeOffset, IScheduler)Indicates the queryable observable sequence by due time with the specified source, dueTime and scheduler.Public methodStatic memberDelay(IQbservable, TimeSpan, IScheduler)Indicates the queryable observable sequence by due time with the specified source, dueTime and scheduler.Public methodStatic memberDematerializeDematerializes the explicit notification values of a queryable observable sequence as implicit notifications.Public methodStatic memberDistinct(IQbservable)Returns a queryable observable sequence that contains only distinct elements with a specified source.Public methodStatic memberDistinct(IQbservable, IEqualityComparer)Returns a queryable observable sequence that contains only distinct elements according to the comparer.Public methodStatic memberDistinct<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns a queryable observable sequence that contains only distinct elements according to the keySelector.Public methodStatic memberDistinct<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Returns a queryable observable sequence that contains only distinct elements according to the keySelector and comparer.Public methodStatic memberDistinctUntilChanged(IQbservable)Returns a queryable observable sequence that contains only distinct contiguous elements with a specified source.Public methodStatic memberDistinctUntilChanged(IQbservable, IEqualityComparer)Returns a queryable observable sequence that contains only distinct contiguous elements according to the comparer.Public methodStatic memberDistinctUntilChanged<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns a queryable observable sequence that contains only distinct contiguous elements according to the keySelector.Public methodStatic memberDistinctUntilChanged<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Returns a queryable observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer.Public methodStatic memberDo(IQbservable, IObserver)Invokes an action for each element in the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>)Invokes an action for each element in the queryable observable sequence and invokes an action upon graceful termination of the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>, Expression<Action>)Invokes an action for each element in the queryable observable sequence and invokes an action upon exceptional termination of the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>, Expression)Invokes an action for each element in the queryable observable sequence, and invokes an action upon graceful or exceptional termination of the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>, Expression<Action>, Expression)Invokes an action for each element in the queryable observable sequence, and invokes an action upon graceful or exceptional termination of the queryable observable sequence.Public methodStatic memberElementAtReturns the element at a specified index in a sequence.Public methodStatic memberElementAtOrDefaultReturns the element at a specified index in a sequence or a default value if the index is out of range.Public methodStatic memberEmpty(IQbservableProvider)Returns an empty queryable observable sequence with the specified provider.Public methodStatic memberEmpty(IQbservableProvider, IScheduler)Returns an empty queryable observable sequence with the specified scheduler and provider.Public methodStatic memberFinallyInvokes a specified action after source observable sequence terminates normally or by an exception.Public methodStatic memberFromAsyncPattern(IQbservableProvider, Expression<Func<AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern(IQbservableProvider, Expression<Func<AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern(IQbservableProvider, Expression<Func<T1, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, TResult>(IQbservableProvider, Expression<Func<T1, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2>(IQbservableProvider, Expression<Func<T1, T2, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, TResult>(IQbservableProvider, Expression<Func<T1, T2, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3>(IQbservableProvider, Expression<Func<T1, T2, T3, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromEvent(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEvent(IQbservableProvider, Expression<Action<Action>>, Expression<Action<Action>>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEvent<TDelegate, TEventArgs>(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEvent<TDelegate, TEventArgs>(IQbservableProvider, Expression<Func<Action, TDelegate>>, Expression<Action>, Expression<Action>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEventPattern(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event, conforming to the standard .NET event pattern, to a queryable observable sequence with a specified add handler and remove handler.Public methodStatic memberFromEventPattern(IQbservableProvider, Object, String)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence, using reflection to find an instance event.Public methodStatic memberFromEventPattern(IQbservableProvider, Type, String)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence, using reflection to find a static event.Public methodStatic memberFromEventPattern(IQbservableProvider, Expression<Action<EventHandler>>, Expression<Action<EventHandler>>)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence with the specified add handler and remove handler.Public methodStatic memberFromEventPattern(IQbservableProvider, Object, String)Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.Public methodStatic memberFromEventPattern(IQbservableProvider, Type, String)Converts a .NET event, conforming to the standard .NET event pattern, to a queryable observable sequence, using reflection to find a static event.Public methodStatic memberFromEventPattern<TDelegate, TEventArgs>(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence with the specified add handler and remove handler.Public methodStatic memberFromEventPattern<TDelegate, TEventArgs>(IQbservableProvider, Expression<Func<EventHandler, TDelegate>>, Expression<Action>, Expression<Action>)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence with the specified conversion, add handler and remove handler.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, DateTimeOffset>>)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, TimeSpan>>)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, IScheduler)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, DateTimeOffset>>, IScheduler)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, TimeSpan>>, IScheduler)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGroupBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Groups the elements of a queryable observable sequence according to a specified key selector function.Public methodStatic memberGroupBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer.Public methodStatic memberGroupBy<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>)Groups the elements of a queryable observable sequence and selects the resulting elements by using a specified function.Public methodStatic memberGroupBy<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.Public methodStatic memberGroupByUntil<TSource, TKey, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<IGroupedObservable<TKey, TSource>, IObservable>>)Groups the elements of a queryable observable sequence according to a specified key selector function.Public methodStatic memberGroupByUntil<TSource, TKey, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<IGroupedObservable<TKey, TSource>, IObservable>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer.Public methodStatic memberGroupByUntil<TSource, TKey, TElement, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, Expression<Func<IGroupedObservable<TKey, TElement>, IObservable>>)Groups the elements of a queryable observable sequence according to a specified key selector function and selects the resulting elements by using a specified function.Public methodStatic memberGroupByUntil<TSource, TKey, TElement, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, Expression<Func<IGroupedObservable<TKey, TElement>, IObservable>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.Public methodStatic memberGroupJoin<TLeft, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations, and groups the results.Public methodStatic memberIgnoreElementsIgnores all values in a queryable observable sequence leaving only the termination messages.Public methodStatic memberInterval(IQbservableProvider, TimeSpan)Returns a queryable observable sequence that produces a value after each period.Public methodStatic memberInterval(IQbservableProvider, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after each period.Public methodStatic memberJoin<TLeft, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations.Public methodStatic memberLatestSamples the most recent value in a queryable observable sequence.Public methodStatic memberLongCountReturns a [System.Int64] that represents the total number of elements in a queryable observable sequence.Public methodStatic memberMaterializeMaterializes the implicit notifications of a queryable observable sequence as explicit notification values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Decimal values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Double values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Int32 values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Int64 values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Decimal values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Double values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Int32 values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Int64 values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Float values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Float values.Public methodStatic memberMax(IQbservable)Returns the maximum element in a queryable observable sequence.Public methodStatic memberMax(IQbservable, IComparer)Returns the maximum value in a queryable observable sequence according to the specified comparer.Public methodStatic memberMaxBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns the elements in a queryable observable sequence with the maximum key value.Public methodStatic memberMaxBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IComparer)Returns the elements in a queryable observable sequence with the maximum key value.Public methodStatic memberMerge(IQbservable<IObservable>)Merges all the queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservable<IObservable>, Int32)Merges an enumerable sequence of queryable observable sequences into a queryable observable sequence, limiting the number of concurrent subscriptions to inner sequences.Public methodStatic memberMerge(IQbservable, IObservable)Merges an enumerable sequence of queryable observable sequences into a single observable sequence.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>)Merges an enumerable sequence of queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, array<IObservable[])Merges all the queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservable, IObservable, IScheduler)Merges two queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>, Int32)Merges an enumerable sequence of queryable observable sequences into an queryable observable sequence, limiting the number of concurrent subscriptions to inner sequences.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>, IScheduler)Merges an enumerable sequence of queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, IScheduler, array<IObservable[])Merges all the queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>, Int32, IScheduler)Merges an enumerable sequence of queryable observable sequences into an queryable observable sequence, limiting the number of concurrent subscriptions to inner sequences.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Decimal values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Double values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Int32 values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Int64 values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Decimal values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Double values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Int32 values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Int64 values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Float values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Float values.Public methodStatic memberMin(IQbservable)Returns the minimum element in a queryable observable sequence.Public methodStatic memberMin(IQbservable, IComparer)Returns the minimum value in a queryable observable sequence according to the specified comparer.Public methodStatic memberMinBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns the elements in a queryable observable sequence with the minimum key value.Public methodStatic memberMinBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IComparer)Returns the elements in a queryable observable sequence with the minimum key value according to the specified comparer.Public methodStatic memberMostRecentSamples the most recent value in a queryable observable sequence.Public methodStatic memberMulticast<TSource, TIntermediate, TResult>Returns a queryable observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.Public methodStatic memberNeverReturns a non-terminating queryable observable sequence.Public methodStatic memberNextSamples the next value (blocking without buffering) from in an queryable observable sequence.Public methodStatic memberObserveOn(IQbservable, IScheduler)Asynchronously notify observers on the specified synchronization context.Public methodStatic memberObserveOn(IQbservable, SynchronizationContext)Asynchronously notify observers on the specified synchronization context.Public methodStatic memberOfTypeFilters the elements of a queryable observable sequence based on the specified type.Public methodStatic memberOnErrorResumeNext(IQbservable, IObservable)Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.Public methodStatic memberOnErrorResumeNext(IQbservableProvider, IEnumerable<IObservable>)Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.Public methodStatic memberOnErrorResumeNext(IQbservableProvider, array<IObservable[])Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.Public methodStatic memberPublish<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence.Public methodStatic memberPublish<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, TSource)Returns a queryable observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence.Public methodStatic memberPublishLast<TSource, TResult>Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.Public methodStatic memberRange(IQbservableProvider, Int32, Int32)Generates a queryable observable sequence of integral numbers within a specified range.Public methodStatic memberRange(IQbservableProvider, Int32, Int32, IScheduler)Generates a queryable observable sequence of integral numbers within a specified range.Public methodStatic memberRefCountReturns a queryable observable sequence that stays connected to the source as long as there is at least one subscription to the queryable observable sequence.Public methodStatic memberRepeat(IQbservable)Repeats the queryable observable sequence indefinitely.Public methodStatic memberRepeat(IQbservable, Int32)Repeats the queryable observable sequence indefinitely.Public methodStatic memberRepeat(IQbservableProvider, TResult)Generates a queryable observable sequence that repeats the given element infinitely.Public methodStatic memberRepeat(IQbservableProvider, TResult, Int32)Generates a queryable observable sequence that repeats the given element the specified number of times.Public methodStatic memberRepeat(IQbservableProvider, TResult, IScheduler)Generates a queryable observable sequence that repeats the given element infinitely.Public methodStatic memberRepeat(IQbservableProvider, TResult, Int32, IScheduler)Generates a queryable observable sequence that repeats the given element of the specified number of times.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>)Returns a queryable 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.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, TimeSpan)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32, TimeSpan)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, TimeSpan, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32, TimeSpan, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.Public methodStatic memberRetry(IQbservable)Repeats the source queryable observable sequence until it successfully terminates.Public methodStatic memberRetry(IQbservable, Int32)Repeats the source queryable observable sequence until it successfully terminates.Public methodStatic memberReturn(IQbservableProvider, TResult)Returns a queryable observable sequence that contains a single element with a specified value.Public methodStatic memberReturn(IQbservableProvider, TResult, IScheduler)Returns a queryable observable sequence that contains a single value with a specified value and scheduler.Public methodStatic memberSample(IQbservable, TimeSpan)Samples the queryable observable sequence at each interval.Public methodStatic memberSample(IQbservable, TimeSpan, IScheduler)Samples the queryable observable sequence at each interval with the specified source, interval and scheduler.Public methodStatic memberSample<TSource, TSample>(IQbservable, IObservable)Samples the queryable observable sequence at sampling ticks with the specified source and sampler.Public methodStatic memberScan(IQbservable, Expression<Func<TSource, TSource, TSource>>)Applies an accumulator function over a queryable observable sequence and returns each intermediate result with the specified source and accumulator.Public methodStatic memberScan<TSource, TAccumulate>(IQbservable, TAccumulate, Expression<Func<TAccumulate, TSource, TAccumulate>>)Applies an accumulator function over a queryable observable sequence and returns each intermediate result with the specified source, seed and accumulator.Public methodStatic memberSelect<TSource, TResult>(IQbservable, Expression<Func<TSource, TResult>>)Projects each element of a queryable observable sequence into a new form with the specified source and selector.Public methodStatic memberSelect<TSource, TResult>(IQbservable, Expression<Func<TSource, Int32, TResult>>)Projects each element of a queryable observable sequence into a new form by incorporating the element’s index with the specified source and selector.Public methodStatic memberSelectMany<TSource, TOther>(IQbservable, IObservable)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TResult>(IQbservable, Expression<Func<TSource, IEnumerable>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TResult>(IQbservable, Expression<Func<TSource, IObservable>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TResult>(IQbservable, Expression<Func<TSource, IObservable>>, Expression<Func<Exception, IObservable>>, Expression<Func<IObservable>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TCollection, TResult>(IQbservable, Expression<Func<TSource, IEnumerable>>, Expression<Func<TSource, TCollection, TResult>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TCollection, TResult>(IQbservable, Expression<Func<TSource, IObservable>>, Expression<Func<TSource, TCollection, TResult>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSequenceEqual(IQbservable, IObservable)Determines whether two sequences are equal by comparing the elements pairwise.Public methodStatic memberSequenceEqual(IQbservable, IObservable, IEqualityComparer)Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer.Public methodStatic memberSkipBypasses a specified number of values in an observable sequence and then returns the remaining values.Public methodStatic memberSkipLastBypasses a specified number of elements at the end of a queryable observable sequence.Public methodStatic memberSkipUntil<TSource, TOther>Returns the values from the source queryable observable sequence only after the other queryable observable sequence produces a value.Public methodStatic memberSkipWhile(IQbservable, Expression<Func<TSource, Boolean>>)Bypasses values in a queryable observable sequence as long as a specified condition is true and then returns the remaining values.Public methodStatic memberSkipWhile(IQbservable, Expression<Func<TSource, Int32, Boolean>>)Bypasses values in a queryable observable sequence as long as a specified condition is true and then returns the remaining values.Public methodStatic memberStart(IQbservableProvider, Expression)Invokes the action asynchronously.Public methodStatic memberStart(IQbservableProvider, Expression, IScheduler)Invokes the action asynchronously.Public methodStatic memberStart(IQbservableProvider, Expression<Func>)Invokes the function asynchronously.Public methodStatic memberStart(IQbservableProvider, Expression<Func>, IScheduler)Invokes the function asynchronously.Public methodStatic memberStartWith(IQbservable, array<TSource[])Prepends a sequence of values to a queryable observable sequence with the specified source and values.Public methodStatic memberStartWith(IQbservable, IScheduler, array<TSource[])Prepends a sequence of values to a queryable observable sequence with the specified source, scheduler and values.Public methodStatic memberSubscribeOn(IQbservable, IScheduler)Asynchronously subscribes and unsubscribes observers on the specified synchronization context.Public methodStatic memberSubscribeOn(IQbservable, SynchronizationContext)Asynchronously subscribes and unsubscribes observers on the specified synchronization context.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Decimal values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Double values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Int32 values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Int64 values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Decimal values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Double values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Int32 values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Int64 values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Float values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Float values.Public methodStatic memberSwitchTransforms a queryable observable sequence of queryable observable sequences into a queryable observable sequence producing values only from the most recent queryable observable sequence.Public methodStatic memberSynchronize(IQbservable)Synchronizes the queryable observable sequence.Public methodStatic memberSynchronize(IQbservable, Object)Synchronizes the queryable observable sequence.Public methodStatic memberTakeReturns a specified number of contiguous values from the start of a queryable observable sequence.Public methodStatic memberTakeLastReturns a specified number of contiguous elements from the end of a queryable observable sequence.Public methodStatic memberTakeUntil<TSource, TOther>Returns the values from the source queryable observable sequence until the other queryable observable sequence produces a value.Public methodStatic memberTakeWhile(IQbservable, Expression<Func<TSource, Boolean>>)Returns values from a queryable observable sequence as long as a specified condition is true, and then skips the remaining values.Public methodStatic memberTakeWhile(IQbservable, Expression<Func<TSource, Int32, Boolean>>)Returns values from a queryable observable sequence as long as a specified condition is true, and then skips the remaining values.Public methodStatic memberThen<TSource, TResult>Matches when the queryable observable sequence has an available value and projects the value.Public methodStatic memberThrottle(IQbservable, TimeSpan)Ignores the values from a queryable observable sequence which are followed by another value before due time with the specified source and dueTime.Public methodStatic memberThrottle(IQbservable, TimeSpan, IScheduler)Ignores the values from a queryable observable sequence which are followed by another value before due time with the specified source, dueTime and scheduler.Public methodStatic memberThrow(IQbservableProvider, Exception)Returns a queryable observable sequence that terminates with an exception.Public methodStatic memberThrow(IQbservableProvider, Exception, IScheduler)Returns a queryable observable sequence that terminates with an exception with the specified scheduler.Public methodStatic memberTimeInterval(IQbservable)Records the time interval between consecutive values in a queryable observable sequence with the specified source.Public methodStatic memberTimeInterval(IQbservable, IScheduler)Records the time interval between consecutive values in a queryable observable sequence with the specified source and scheduler.Public methodStatic memberTimeout(IQbservable, DateTimeOffset)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, DateTimeOffset, IObservable)Returns either the queryable observable sequence or an TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, DateTimeOffset, IScheduler)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan, IObservable)Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan, IScheduler)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, DateTimeOffset, IObservable, IScheduler)Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan, IObservable, IScheduler)Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset)Returns a queryable observable sequence that produces a value at due time.Public methodStatic memberTimer(IQbservableProvider, TimeSpan)Returns a queryable observable sequence that produces a value after the due time has elapsed.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset, IScheduler)Returns a queryable observable sequence that produces a value at due time.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset, TimeSpan)Returns a queryable observable sequence that produces a value at due time and then after each period.Public methodStatic memberTimer(IQbservableProvider, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after the due time has elapsed.Public methodStatic memberTimer(IQbservableProvider, TimeSpan, TimeSpan)Returns a queryable observable sequence that produces a value after due time has elapsed and then after each period.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value at due time and then after each period.Public methodStatic memberTimer(IQbservableProvider, TimeSpan, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after due time has elapsed and then each period.Public methodStatic memberTimestamp(IQbservable)Records the timestamp for each value in a queryable observable sequence with the specified source.Public methodStatic memberTimestamp(IQbservable, IScheduler)Records the timestamp for each value in a queryable observable sequence with the specified source and scheduler.Public methodStatic memberToArrayCreates an array from a queryable observable sequence.Public methodStatic memberToAsync(IQbservableProvider, Expression)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Action>)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Func>)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Action>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Func>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2>(IQbservableProvider, Expression<Action<T1, T2>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<TSource, TResult>(IQbservableProvider, Expression<Func<TSource, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2>(IQbservableProvider, Expression<Action<T1, T2>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<TSource, TResult>(IQbservableProvider, Expression<Func<TSource, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3>(IQbservableProvider, Expression<Action<T1, T2, T3>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, TResult>(IQbservableProvider, Expression<Func<T1, T2, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3>(IQbservableProvider, Expression<Action<T1, T2, T3>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, TResult>(IQbservableProvider, Expression<Func<T1, T2, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4>(IQbservableProvider, Expression<Action<T1, T2, T3, T4>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4>(IQbservableProvider, Expression<Action<T1, T2, T3, T4>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToDictionary<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Creates a dictionary from a queryable observable sequence according to a specified key selector function.Public methodStatic memberToDictionary<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Creates a dictionary from a queryable observable sequence according to a specified key selector function, and a comparer.Public methodStatic memberToDictionary<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>)Creates a dictionary from a queryable observable sequence according to a specified key selector function, and an element selector function.Public methodStatic memberToDictionary<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, IEqualityComparer)Creates a dictionary from a queryable observable sequence according to a specified key selector function, a comparer, and an element selector function.Public methodStatic memberToListCreates a list from a queryable observable sequence.Public methodStatic memberToLookup<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Creates a lookup from a queryable observable sequence according to a specified key selector function.Public methodStatic memberToLookup<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Creates a lookup from a queryable observable sequence according to a specified key selector function, and a comparer.Public methodStatic memberToLookup<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>)Creates a lookup from a queryable observable sequence according to a specified key selector function, and an element selector function.Public methodStatic memberToLookup<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, IEqualityComparer)Creates a lookup from a queryable observable sequence according to a specified key selector function, a comparer, and an element selector function.Public methodStatic memberToObservable(IQbservableProvider, IEnumerable)Converts an enumerable sequence to a queryable observable sequence with a specified source.Public methodStatic memberToObservable(IQbservableProvider, IEnumerable, IScheduler)Converts an enumerable sequence to a queryable observable sequence with a specified source and scheduler.Public methodStatic memberToQbservableConverts an enumerable sequence to a queryable observable sequence with a specified source.Public methodStatic memberToQueryableConverts an enumerable sequence to a queryable observable sequence with a specified source.Public methodStatic memberUsing<TSource, TResource>Constructs a queryable observable sequence that depends on a resource object.Public methodStatic memberWhen(IQbservableProvider, IEnumerable<QueryablePlan>)Joins together the results from several patterns.Public methodStatic memberWhen(IQbservableProvider, array<QueryablePlan[])Joins together the results from several patterns.Public methodStatic memberWhere(IQbservable, Expression<Func<TSource, Boolean>>)Filters the elements of a queryable observable sequence based on a predicate.Public methodStatic memberWhere(IQbservable, Expression<Func<TSource, Int32, Boolean>>)Filters the elements of a queryable observable sequence based on a predicate by incorporating the element's index.Public methodStatic memberWindow(IQbservable, Int32)Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on element count information.Public methodStatic memberWindow(IQbservable, TimeSpan)Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on timing information.Public methodStatic memberWindow(IQbservable, Int32, Int32)Projects each element of a queryable observable sequence into zero or more windows which are produced based on element count information.Public methodStatic memberWindow(IQbservable, TimeSpan, Int32)Projects each element of a queryable observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed.Public methodStatic memberWindow(IQbservable, TimeSpan, IScheduler)Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on timing information.Public methodStatic memberWindow(IQbservable, TimeSpan, TimeSpan)Projects each element of a queryable observable sequence into zero or more windows which are produced based on timing information.Public methodStatic memberWindow(IQbservable, TimeSpan, Int32, IScheduler)Projects each element of a queryable observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed.Public methodStatic memberWindow(IQbservable, TimeSpan, TimeSpan, IScheduler)Projects each element of a queryable observable sequence into zero or more windows which are produced based on timing information.Public methodStatic memberWindow<TSource, TWindowClosing>(IQbservable, Expression<Func<IObservable>>)Projects each element of a queryable observable sequence into consecutive non-overlapping windows.Public methodStatic memberWindow<TSource, TWindowOpening, TWindowClosing>(IQbservable, IObservable, Expression<Func<TWindowOpening, IObservable>>)Projects each element of a queryable observable sequence into zero or more windows.Public methodStatic memberZip<TFirst, TSecond, TResult>(IQbservable, IEnumerable, Expression<Func<TFirst, TSecond, TResult>>)Merges a queryable observable sequence and an enumerable sequence into one queryable observable sequence by using the selector function.Public methodStatic memberZip<TFirst, TSecond, TResult>(IQbservable, IObservable, Expression<Func<TFirst, TSecond, TResult>>)Merges two queryable observable sequences into one queryable observable sequence by combining their elements in a pairwise fashion.Top

See Also

Reference

Qbservable Class

System.Reactive.Linq Namespace

Qbservable Properties

Include Protected Members
Include Inherited Members

The Qbservable type exposes the following members.

Properties

NameDescriptionPublic propertyStatic memberProviderGets the local Qbservable provider.Top

See Also

Reference

Qbservable Class

System.Reactive.Linq Namespace

Qbservable Class

Represents a queryable observable sequence.

Inheritance Hierarchy

System.Object
  System.Reactive.Linq.Qbservable

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive.Providers (in System.Reactive.Providers.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public NotInheritable Class Qbservable
'Usage
public static class Qbservable
[ExtensionAttribute]
public ref class Qbservable abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
type Qbservable =  class end
public final class Qbservable

The Qbservable type exposes the following members.

Properties

NameDescriptionPublic propertyStatic memberProviderGets the local Qbservable provider.Top

Methods

NameDescriptionPublic methodStatic memberAggregate(IQbservable, Expression<Func<TSource, TSource, TSource>>)Applies an accumulator function over a queryable observable sequence.Public methodStatic memberAggregate<TSource, TAccumulate>(IQbservable, TAccumulate, Expression<Func<TAccumulate, TSource, TAccumulate>>)Applies an accumulator function over a queryable observable sequence.Public methodStatic memberAllDetermines whether all elements of a queryable observable sequence satisfies a condition.Public methodStatic memberAmb(IQbservable, IObservable)Propagates the queryable observable sequence that reacts first with the specified first and second sequence.Public methodStatic memberAmb(IQbservableProvider, IEnumerable<IObservable>)Propagates the queryable observable sequence that reacts first with a specified sources.Public methodStatic memberAmb(IQbservableProvider, array<IObservable[])Propagates the queryable observable sequence that reacts first with a specified sources.Public methodStatic memberAnd<TLeft, TRight>Matches when both queryable observable sequences have an available value.Public methodStatic memberAny(IQbservable)Determines whether a queryable observable sequence contains any elements.Public methodStatic memberAny(IQbservable, Expression<Func<TSource, Boolean>>)Determines whether all elements of a queryable observable sequence satisfies a condition.Public methodStatic memberAsObservableHides the identity of an observable sequence.Public methodStatic memberAsQbservableConverts an observable sequence into a queryable observable sequence.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Decimal values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Double values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Int32 values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Int64 values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Decimal values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Double values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Int32 values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Int64 values.Public methodStatic memberAverage(IQbservable<Nullable>)Computes the average of a queryable observable sequence of nullable Float values.Public methodStatic memberAverage(IQbservable)Computes the average of a queryable observable sequence of Float values.Public methodStatic memberBuffer(IQbservable, Int32)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers which are produced based on element count information.Public methodStatic memberBuffer(IQbservable, TimeSpan)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers which are produced based on timing information.Public methodStatic memberBuffer(IQbservable, Int32, Int32)Indicates each element of a queryable observable sequence into zero or more buffers which are produced based on element count information.Public methodStatic memberBuffer(IQbservable, TimeSpan, Int32)Indicates each element of a queryable observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed.Public methodStatic memberBuffer(IQbservable, TimeSpan, IScheduler)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers which are produced based on timing information.Public methodStatic memberBuffer(IQbservable, TimeSpan, TimeSpan)Indicates each element of a queryable observable sequence into zero or more buffers which are produced based on timing information.Public methodStatic memberBuffer(IQbservable, TimeSpan, Int32, IScheduler)Indicates each element of a queryable observable sequence into a buffer that’s sent out when either it’s full or a given amount of time has elapsed.Public methodStatic memberBuffer(IQbservable, TimeSpan, TimeSpan, IScheduler)Indicates each element of a queryable observable sequence into zero or more buffers which are produced based on timing information.Public methodStatic memberBuffer<TSource, TBufferClosing>(IQbservable, Expression<Func<IObservable>>)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers.Public methodStatic memberBuffer<TSource, TBufferOpening, TBufferClosing>(IQbservable, IObservable, Expression<Func<TBufferOpening, IObservable>>)Indicates each element of a queryable observable sequence into consecutive non-overlapping buffers.Public methodStatic memberCastConverts the elements of an observable sequence to the specified type.Public methodStatic memberCatch(IQbservable, IObservable)Continues a queryable observable sequence that is terminated by an exception with the next queryable observable sequence.Public methodStatic memberCatch(IQbservableProvider, IEnumerable<IObservable>)Continues a queryable observable sequence that is terminated by an exception with the next queryableobservable sequence.Public methodStatic memberCatch(IQbservableProvider, array<IObservable[])Continues a queryable observable sequence that is terminated by an exception with the next queryable observable sequence.Public methodStatic memberCatch<TSource, TException>(IQbservable, Expression<Func<TException, IObservable>>)Continues a queryable observable sequence that is terminated by an exception of the specified type with the queryable observable sequence produced by the handler.Public methodStatic memberCombineLatest<TFirst, TSecond, TResult>Merges two queryable observable sequences into one queryable observable sequence by using the selector function whenever one of the queryable observable sequences produces an element.Public methodStatic memberConcat(IQbservable<IObservable>)Concatenates an enumerable sequence of queryable observable sequences.Public methodStatic memberConcat(IQbservable, IObservable)Concatenates two observable sequences.Public methodStatic memberConcat(IQbservableProvider, IEnumerable<IObservable>)Concatenates all the queryable observable sequences.Public methodStatic memberConcat(IQbservableProvider, array<IObservable[])Concatenates a queryable observable sequence of queryable observable sequences.Public methodStatic memberContains(IQbservable, TSource)Determines whether a queryable observable sequence contains a specified element by using the default equality comparer.Public methodStatic memberContains(IQbservable, TSource, IEqualityComparer)Determines whether an observable sequence contains a specified element by using a specified source type, source, value and comparer.Public methodStatic memberCountReturns a [System.Int32] that represents the total number of elements in a queryable observable sequence.Public methodStatic memberCreate(IQbservableProvider, Expression<Func<IObserver, Action>>)Creates a queryable observable sequence from a specified subscribe method implementation with a specified subscribe.Public methodStatic memberCreate(IQbservableProvider, Expression<Func<IObserver, IDisposable>>)Creates a queryable observable sequence from a specified subscribe method implementation with a specified subscribe.Public methodStatic memberDefaultIfEmpty(IQbservable)Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.Public methodStatic memberDefaultIfEmpty(IQbservable, TSource)Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.Public methodStatic memberDeferReturns a queryable observable sequence that invokes the observable factory whenever a new observer subscribes.Public methodStatic memberDelay(IQbservable, DateTimeOffset)Indicates the queryable observable sequence by due time with the specified source and dueTime.Public methodStatic memberDelay(IQbservable, TimeSpan)Indicates the queryable observable sequence by due time with the specified source and dueTime.Public methodStatic memberDelay(IQbservable, DateTimeOffset, IScheduler)Indicates the queryable observable sequence by due time with the specified source, dueTime and scheduler.Public methodStatic memberDelay(IQbservable, TimeSpan, IScheduler)Indicates the queryable observable sequence by due time with the specified source, dueTime and scheduler.Public methodStatic memberDematerializeDematerializes the explicit notification values of a queryable observable sequence as implicit notifications.Public methodStatic memberDistinct(IQbservable)Returns a queryable observable sequence that contains only distinct elements with a specified source.Public methodStatic memberDistinct(IQbservable, IEqualityComparer)Returns a queryable observable sequence that contains only distinct elements according to the comparer.Public methodStatic memberDistinct<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns a queryable observable sequence that contains only distinct elements according to the keySelector.Public methodStatic memberDistinct<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Returns a queryable observable sequence that contains only distinct elements according to the keySelector and comparer.Public methodStatic memberDistinctUntilChanged(IQbservable)Returns a queryable observable sequence that contains only distinct contiguous elements with a specified source.Public methodStatic memberDistinctUntilChanged(IQbservable, IEqualityComparer)Returns a queryable observable sequence that contains only distinct contiguous elements according to the comparer.Public methodStatic memberDistinctUntilChanged<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns a queryable observable sequence that contains only distinct contiguous elements according to the keySelector.Public methodStatic memberDistinctUntilChanged<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Returns a queryable observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer.Public methodStatic memberDo(IQbservable, IObserver)Invokes an action for each element in the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>)Invokes an action for each element in the queryable observable sequence and invokes an action upon graceful termination of the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>, Expression<Action>)Invokes an action for each element in the queryable observable sequence and invokes an action upon exceptional termination of the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>, Expression)Invokes an action for each element in the queryable observable sequence, and invokes an action upon graceful or exceptional termination of the queryable observable sequence.Public methodStatic memberDo(IQbservable, Expression<Action>, Expression<Action>, Expression)Invokes an action for each element in the queryable observable sequence, and invokes an action upon graceful or exceptional termination of the queryable observable sequence.Public methodStatic memberElementAtReturns the element at a specified index in a sequence.Public methodStatic memberElementAtOrDefaultReturns the element at a specified index in a sequence or a default value if the index is out of range.Public methodStatic memberEmpty(IQbservableProvider)Returns an empty queryable observable sequence with the specified provider.Public methodStatic memberEmpty(IQbservableProvider, IScheduler)Returns an empty queryable observable sequence with the specified scheduler and provider.Public methodStatic memberFinallyInvokes a specified action after source observable sequence terminates normally or by an exception.Public methodStatic memberFromAsyncPattern(IQbservableProvider, Expression<Func<AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern(IQbservableProvider, Expression<Func<AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern(IQbservableProvider, Expression<Func<T1, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, TResult>(IQbservableProvider, Expression<Func<T1, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2>(IQbservableProvider, Expression<Func<T1, T2, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, TResult>(IQbservableProvider, Expression<Func<T1, T2, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3>(IQbservableProvider, Expression<Func<T1, T2, T3, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, AsyncCallback, Object, IAsyncResult>>, Expression<Func<IAsyncResult, TResult>>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromAsyncPattern<T1, T2, T3, T4, T5, T6, T7, T8, T9>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, AsyncCallback, Object, IAsyncResult>>, Expression<Action>)Converts a Begin/End invoke function pair into an asynchronous function.Public methodStatic memberFromEvent(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEvent(IQbservableProvider, Expression<Action<Action>>, Expression<Action<Action>>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEvent<TDelegate, TEventArgs>(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEvent<TDelegate, TEventArgs>(IQbservableProvider, Expression<Func<Action, TDelegate>>, Expression<Action>, Expression<Action>)Converts a .NET event to a queryable observable sequence.Public methodStatic memberFromEventPattern(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event, conforming to the standard .NET event pattern, to a queryable observable sequence with a specified add handler and remove handler.Public methodStatic memberFromEventPattern(IQbservableProvider, Object, String)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence, using reflection to find an instance event.Public methodStatic memberFromEventPattern(IQbservableProvider, Type, String)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence, using reflection to find a static event.Public methodStatic memberFromEventPattern(IQbservableProvider, Expression<Action<EventHandler>>, Expression<Action<EventHandler>>)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence with the specified add handler and remove handler.Public methodStatic memberFromEventPattern(IQbservableProvider, Object, String)Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.Public methodStatic memberFromEventPattern(IQbservableProvider, Type, String)Converts a .NET event, conforming to the standard .NET event pattern, to a queryable observable sequence, using reflection to find a static event.Public methodStatic memberFromEventPattern<TDelegate, TEventArgs>(IQbservableProvider, Expression<Action>, Expression<Action>)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence with the specified add handler and remove handler.Public methodStatic memberFromEventPattern<TDelegate, TEventArgs>(IQbservableProvider, Expression<Func<EventHandler, TDelegate>>, Expression<Action>, Expression<Action>)Converts a .NET event, conforming to the standard .NET event pattern, to an queryable observable sequence with the specified conversion, add handler and remove handler.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, DateTimeOffset>>)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, TimeSpan>>)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, IScheduler)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, DateTimeOffset>>, IScheduler)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGenerate<TState, TResult>(IQbservableProvider, TState, Expression<Func<TState, Boolean>>, Expression<Func<TState, TState>>, Expression<Func<TState, TResult>>, Expression<Func<TState, TimeSpan>>, IScheduler)Generates a queryable observable sequence by iterating a state from an initial state until the condition fails.Public methodStatic memberGroupBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Groups the elements of a queryable observable sequence according to a specified key selector function.Public methodStatic memberGroupBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer.Public methodStatic memberGroupBy<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>)Groups the elements of a queryable observable sequence and selects the resulting elements by using a specified function.Public methodStatic memberGroupBy<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.Public methodStatic memberGroupByUntil<TSource, TKey, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<IGroupedObservable<TKey, TSource>, IObservable>>)Groups the elements of a queryable observable sequence according to a specified key selector function.Public methodStatic memberGroupByUntil<TSource, TKey, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<IGroupedObservable<TKey, TSource>, IObservable>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer.Public methodStatic memberGroupByUntil<TSource, TKey, TElement, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, Expression<Func<IGroupedObservable<TKey, TElement>, IObservable>>)Groups the elements of a queryable observable sequence according to a specified key selector function and selects the resulting elements by using a specified function.Public methodStatic memberGroupByUntil<TSource, TKey, TElement, TDuration>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, Expression<Func<IGroupedObservable<TKey, TElement>, IObservable>>, IEqualityComparer)Groups the elements of a queryable observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.Public methodStatic memberGroupJoin<TLeft, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations, and groups the results.Public methodStatic memberIgnoreElementsIgnores all values in a queryable observable sequence leaving only the termination messages.Public methodStatic memberInterval(IQbservableProvider, TimeSpan)Returns a queryable observable sequence that produces a value after each period.Public methodStatic memberInterval(IQbservableProvider, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after each period.Public methodStatic memberJoin<TLeft, TRight, TLeftDuration, TRightDuration, TResult>Correlates the elements of two sequences based on overlapping durations.Public methodStatic memberLatestSamples the most recent value in a queryable observable sequence.Public methodStatic memberLongCountReturns a [System.Int64] that represents the total number of elements in a queryable observable sequence.Public methodStatic memberMaterializeMaterializes the implicit notifications of a queryable observable sequence as explicit notification values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Decimal values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Double values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Int32 values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Int64 values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Decimal values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Double values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Int32 values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Int64 values.Public methodStatic memberMax(IQbservable<Nullable>)Returns the maximum value in a queryable observable sequence of nullable Float values.Public methodStatic memberMax(IQbservable)Returns the maximum value in a queryable observable sequence of Float values.Public methodStatic memberMax(IQbservable)Returns the maximum element in a queryable observable sequence.Public methodStatic memberMax(IQbservable, IComparer)Returns the maximum value in a queryable observable sequence according to the specified comparer.Public methodStatic memberMaxBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns the elements in a queryable observable sequence with the maximum key value.Public methodStatic memberMaxBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IComparer)Returns the elements in a queryable observable sequence with the maximum key value.Public methodStatic memberMerge(IQbservable<IObservable>)Merges all the queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservable<IObservable>, Int32)Merges an enumerable sequence of queryable observable sequences into a queryable observable sequence, limiting the number of concurrent subscriptions to inner sequences.Public methodStatic memberMerge(IQbservable, IObservable)Merges an enumerable sequence of queryable observable sequences into a single observable sequence.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>)Merges an enumerable sequence of queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, array<IObservable[])Merges all the queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservable, IObservable, IScheduler)Merges two queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>, Int32)Merges an enumerable sequence of queryable observable sequences into an queryable observable sequence, limiting the number of concurrent subscriptions to inner sequences.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>, IScheduler)Merges an enumerable sequence of queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, IScheduler, array<IObservable[])Merges all the queryable observable sequences into a single queryable observable sequence.Public methodStatic memberMerge(IQbservableProvider, IEnumerable<IObservable>, Int32, IScheduler)Merges an enumerable sequence of queryable observable sequences into an queryable observable sequence, limiting the number of concurrent subscriptions to inner sequences.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Decimal values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Double values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Int32 values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Int64 values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Decimal values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Double values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Int32 values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Int64 values.Public methodStatic memberMin(IQbservable<Nullable>)Returns the minimum value in a queryable observable sequence of nullable Float values.Public methodStatic memberMin(IQbservable)Returns the minimum value in a queryable observable sequence of Float values.Public methodStatic memberMin(IQbservable)Returns the minimum element in a queryable observable sequence.Public methodStatic memberMin(IQbservable, IComparer)Returns the minimum value in a queryable observable sequence according to the specified comparer.Public methodStatic memberMinBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Returns the elements in a queryable observable sequence with the minimum key value.Public methodStatic memberMinBy<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IComparer)Returns the elements in a queryable observable sequence with the minimum key value according to the specified comparer.Public methodStatic memberMostRecentSamples the most recent value in a queryable observable sequence.Public methodStatic memberMulticast<TSource, TIntermediate, TResult>Returns a queryable observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.Public methodStatic memberNeverReturns a non-terminating queryable observable sequence.Public methodStatic memberNextSamples the next value (blocking without buffering) from in an queryable observable sequence.Public methodStatic memberObserveOn(IQbservable, IScheduler)Asynchronously notify observers on the specified synchronization context.Public methodStatic memberObserveOn(IQbservable, SynchronizationContext)Asynchronously notify observers on the specified synchronization context.Public methodStatic memberOfTypeFilters the elements of a queryable observable sequence based on the specified type.Public methodStatic memberOnErrorResumeNext(IQbservable, IObservable)Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.Public methodStatic memberOnErrorResumeNext(IQbservableProvider, IEnumerable<IObservable>)Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.Public methodStatic memberOnErrorResumeNext(IQbservableProvider, array<IObservable[])Continues a queryable observable sequence that is terminated normally or by an exception with the next queryable observable sequence.Public methodStatic memberPublish<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence.Public methodStatic memberPublish<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, TSource)Returns a queryable observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence.Public methodStatic memberPublishLast<TSource, TResult>Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.Public methodStatic memberRange(IQbservableProvider, Int32, Int32)Generates a queryable observable sequence of integral numbers within a specified range.Public methodStatic memberRange(IQbservableProvider, Int32, Int32, IScheduler)Generates a queryable observable sequence of integral numbers within a specified range.Public methodStatic memberRefCountReturns a queryable observable sequence that stays connected to the source as long as there is at least one subscription to the queryable observable sequence.Public methodStatic memberRepeat(IQbservable)Repeats the queryable observable sequence indefinitely.Public methodStatic memberRepeat(IQbservable, Int32)Repeats the queryable observable sequence indefinitely.Public methodStatic memberRepeat(IQbservableProvider, TResult)Generates a queryable observable sequence that repeats the given element infinitely.Public methodStatic memberRepeat(IQbservableProvider, TResult, Int32)Generates a queryable observable sequence that repeats the given element the specified number of times.Public methodStatic memberRepeat(IQbservableProvider, TResult, IScheduler)Generates a queryable observable sequence that repeats the given element infinitely.Public methodStatic memberRepeat(IQbservableProvider, TResult, Int32, IScheduler)Generates a queryable observable sequence that repeats the given element of the specified number of times.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>)Returns a queryable 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.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, TimeSpan)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32, TimeSpan)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, TimeSpan, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.Public methodStatic memberReplay<TSource, TResult>(IQbservable, Expression<Func<IObservable, IObservable>>, Int32, TimeSpan, IScheduler)Returns a queryable observable sequence that is the result of invoking the selector on a connectable queryable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.Public methodStatic memberRetry(IQbservable)Repeats the source queryable observable sequence until it successfully terminates.Public methodStatic memberRetry(IQbservable, Int32)Repeats the source queryable observable sequence until it successfully terminates.Public methodStatic memberReturn(IQbservableProvider, TResult)Returns a queryable observable sequence that contains a single element with a specified value.Public methodStatic memberReturn(IQbservableProvider, TResult, IScheduler)Returns a queryable observable sequence that contains a single value with a specified value and scheduler.Public methodStatic memberSample(IQbservable, TimeSpan)Samples the queryable observable sequence at each interval.Public methodStatic memberSample(IQbservable, TimeSpan, IScheduler)Samples the queryable observable sequence at each interval with the specified source, interval and scheduler.Public methodStatic memberSample<TSource, TSample>(IQbservable, IObservable)Samples the queryable observable sequence at sampling ticks with the specified source and sampler.Public methodStatic memberScan(IQbservable, Expression<Func<TSource, TSource, TSource>>)Applies an accumulator function over a queryable observable sequence and returns each intermediate result with the specified source and accumulator.Public methodStatic memberScan<TSource, TAccumulate>(IQbservable, TAccumulate, Expression<Func<TAccumulate, TSource, TAccumulate>>)Applies an accumulator function over a queryable observable sequence and returns each intermediate result with the specified source, seed and accumulator.Public methodStatic memberSelect<TSource, TResult>(IQbservable, Expression<Func<TSource, TResult>>)Projects each element of a queryable observable sequence into a new form with the specified source and selector.Public methodStatic memberSelect<TSource, TResult>(IQbservable, Expression<Func<TSource, Int32, TResult>>)Projects each element of a queryable observable sequence into a new form by incorporating the element’s index with the specified source and selector.Public methodStatic memberSelectMany<TSource, TOther>(IQbservable, IObservable)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TResult>(IQbservable, Expression<Func<TSource, IEnumerable>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TResult>(IQbservable, Expression<Func<TSource, IObservable>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TResult>(IQbservable, Expression<Func<TSource, IObservable>>, Expression<Func<Exception, IObservable>>, Expression<Func<IObservable>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TCollection, TResult>(IQbservable, Expression<Func<TSource, IEnumerable>>, Expression<Func<TSource, TCollection, TResult>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSelectMany<TSource, TCollection, TResult>(IQbservable, Expression<Func<TSource, IObservable>>, Expression<Func<TSource, TCollection, TResult>>)Projects each element of a queryable observable sequence to a queryable observable sequence and flattens the resulting queryable observable sequences into one queryable observable sequence.Public methodStatic memberSequenceEqual(IQbservable, IObservable)Determines whether two sequences are equal by comparing the elements pairwise.Public methodStatic memberSequenceEqual(IQbservable, IObservable, IEqualityComparer)Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer.Public methodStatic memberSkipBypasses a specified number of values in an observable sequence and then returns the remaining values.Public methodStatic memberSkipLastBypasses a specified number of elements at the end of a queryable observable sequence.Public methodStatic memberSkipUntil<TSource, TOther>Returns the values from the source queryable observable sequence only after the other queryable observable sequence produces a value.Public methodStatic memberSkipWhile(IQbservable, Expression<Func<TSource, Boolean>>)Bypasses values in a queryable observable sequence as long as a specified condition is true and then returns the remaining values.Public methodStatic memberSkipWhile(IQbservable, Expression<Func<TSource, Int32, Boolean>>)Bypasses values in a queryable observable sequence as long as a specified condition is true and then returns the remaining values.Public methodStatic memberStart(IQbservableProvider, Expression)Invokes the action asynchronously.Public methodStatic memberStart(IQbservableProvider, Expression, IScheduler)Invokes the action asynchronously.Public methodStatic memberStart(IQbservableProvider, Expression<Func>)Invokes the function asynchronously.Public methodStatic memberStart(IQbservableProvider, Expression<Func>, IScheduler)Invokes the function asynchronously.Public methodStatic memberStartWith(IQbservable, array<TSource[])Prepends a sequence of values to a queryable observable sequence with the specified source and values.Public methodStatic memberStartWith(IQbservable, IScheduler, array<TSource[])Prepends a sequence of values to a queryable observable sequence with the specified source, scheduler and values.Public methodStatic memberSubscribeOn(IQbservable, IScheduler)Asynchronously subscribes and unsubscribes observers on the specified synchronization context.Public methodStatic memberSubscribeOn(IQbservable, SynchronizationContext)Asynchronously subscribes and unsubscribes observers on the specified synchronization context.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Decimal values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Double values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Int32 values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Int64 values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Decimal values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Double values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Int32 values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Int64 values.Public methodStatic memberSum(IQbservable<Nullable>)Computes the sum of a sequence of nullable Float values.Public methodStatic memberSum(IQbservable)Computes the sum of a sequence of Float values.Public methodStatic memberSwitchTransforms a queryable observable sequence of queryable observable sequences into a queryable observable sequence producing values only from the most recent queryable observable sequence.Public methodStatic memberSynchronize(IQbservable)Synchronizes the queryable observable sequence.Public methodStatic memberSynchronize(IQbservable, Object)Synchronizes the queryable observable sequence.Public methodStatic memberTakeReturns a specified number of contiguous values from the start of a queryable observable sequence.Public methodStatic memberTakeLastReturns a specified number of contiguous elements from the end of a queryable observable sequence.Public methodStatic memberTakeUntil<TSource, TOther>Returns the values from the source queryable observable sequence until the other queryable observable sequence produces a value.Public methodStatic memberTakeWhile(IQbservable, Expression<Func<TSource, Boolean>>)Returns values from a queryable observable sequence as long as a specified condition is true, and then skips the remaining values.Public methodStatic memberTakeWhile(IQbservable, Expression<Func<TSource, Int32, Boolean>>)Returns values from a queryable observable sequence as long as a specified condition is true, and then skips the remaining values.Public methodStatic memberThen<TSource, TResult>Matches when the queryable observable sequence has an available value and projects the value.Public methodStatic memberThrottle(IQbservable, TimeSpan)Ignores the values from a queryable observable sequence which are followed by another value before due time with the specified source and dueTime.Public methodStatic memberThrottle(IQbservable, TimeSpan, IScheduler)Ignores the values from a queryable observable sequence which are followed by another value before due time with the specified source, dueTime and scheduler.Public methodStatic memberThrow(IQbservableProvider, Exception)Returns a queryable observable sequence that terminates with an exception.Public methodStatic memberThrow(IQbservableProvider, Exception, IScheduler)Returns a queryable observable sequence that terminates with an exception with the specified scheduler.Public methodStatic memberTimeInterval(IQbservable)Records the time interval between consecutive values in a queryable observable sequence with the specified source.Public methodStatic memberTimeInterval(IQbservable, IScheduler)Records the time interval between consecutive values in a queryable observable sequence with the specified source and scheduler.Public methodStatic memberTimeout(IQbservable, DateTimeOffset)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, DateTimeOffset, IObservable)Returns either the queryable observable sequence or an TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, DateTimeOffset, IScheduler)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan, IObservable)Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan, IScheduler)Returns either the queryable observable sequence or a TimeoutException if dueTime elapses.Public methodStatic memberTimeout(IQbservable, DateTimeOffset, IObservable, IScheduler)Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.Public methodStatic memberTimeout(IQbservable, TimeSpan, IObservable, IScheduler)Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset)Returns a queryable observable sequence that produces a value at due time.Public methodStatic memberTimer(IQbservableProvider, TimeSpan)Returns a queryable observable sequence that produces a value after the due time has elapsed.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset, IScheduler)Returns a queryable observable sequence that produces a value at due time.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset, TimeSpan)Returns a queryable observable sequence that produces a value at due time and then after each period.Public methodStatic memberTimer(IQbservableProvider, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after the due time has elapsed.Public methodStatic memberTimer(IQbservableProvider, TimeSpan, TimeSpan)Returns a queryable observable sequence that produces a value after due time has elapsed and then after each period.Public methodStatic memberTimer(IQbservableProvider, DateTimeOffset, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value at due time and then after each period.Public methodStatic memberTimer(IQbservableProvider, TimeSpan, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after due time has elapsed and then each period.Public methodStatic memberTimestamp(IQbservable)Records the timestamp for each value in a queryable observable sequence with the specified source.Public methodStatic memberTimestamp(IQbservable, IScheduler)Records the timestamp for each value in a queryable observable sequence with the specified source and scheduler.Public methodStatic memberToArrayCreates an array from a queryable observable sequence.Public methodStatic memberToAsync(IQbservableProvider, Expression)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Action>)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Func>)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Action>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync(IQbservableProvider, Expression<Func>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2>(IQbservableProvider, Expression<Action<T1, T2>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<TSource, TResult>(IQbservableProvider, Expression<Func<TSource, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2>(IQbservableProvider, Expression<Action<T1, T2>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<TSource, TResult>(IQbservableProvider, Expression<Func<TSource, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3>(IQbservableProvider, Expression<Action<T1, T2, T3>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, TResult>(IQbservableProvider, Expression<Func<T1, T2, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3>(IQbservableProvider, Expression<Action<T1, T2, T3>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, TResult>(IQbservableProvider, Expression<Func<T1, T2, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4>(IQbservableProvider, Expression<Action<T1, T2, T3, T4>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4>(IQbservableProvider, Expression<Action<T1, T2, T3, T4>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, TResult>>)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, T9>(IQbservableProvider, Expression<Action<T1, T2, T3, T4, T5, T6, T7, T8, T9>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToAsync<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(IQbservableProvider, Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, TResult>>, IScheduler)Converts the function into an asynchronous function.Public methodStatic memberToDictionary<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Creates a dictionary from a queryable observable sequence according to a specified key selector function.Public methodStatic memberToDictionary<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Creates a dictionary from a queryable observable sequence according to a specified key selector function, and a comparer.Public methodStatic memberToDictionary<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>)Creates a dictionary from a queryable observable sequence according to a specified key selector function, and an element selector function.Public methodStatic memberToDictionary<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, IEqualityComparer)Creates a dictionary from a queryable observable sequence according to a specified key selector function, a comparer, and an element selector function.Public methodStatic memberToListCreates a list from a queryable observable sequence.Public methodStatic memberToLookup<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>)Creates a lookup from a queryable observable sequence according to a specified key selector function.Public methodStatic memberToLookup<TSource, TKey>(IQbservable, Expression<Func<TSource, TKey>>, IEqualityComparer)Creates a lookup from a queryable observable sequence according to a specified key selector function, and a comparer.Public methodStatic memberToLookup<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>)Creates a lookup from a queryable observable sequence according to a specified key selector function, and an element selector function.Public methodStatic memberToLookup<TSource, TKey, TElement>(IQbservable, Expression<Func<TSource, TKey>>, Expression<Func<TSource, TElement>>, IEqualityComparer)Creates a lookup from a queryable observable sequence according to a specified key selector function, a comparer, and an element selector function.Public methodStatic memberToObservable(IQbservableProvider, IEnumerable)Converts an enumerable sequence to a queryable observable sequence with a specified source.Public methodStatic memberToObservable(IQbservableProvider, IEnumerable, IScheduler)Converts an enumerable sequence to a queryable observable sequence with a specified source and scheduler.Public methodStatic memberToQbservableConverts an enumerable sequence to a queryable observable sequence with a specified source.Public methodStatic memberToQueryableConverts an enumerable sequence to a queryable observable sequence with a specified source.Public methodStatic memberUsing<TSource, TResource>Constructs a queryable observable sequence that depends on a resource object.Public methodStatic memberWhen(IQbservableProvider, IEnumerable<QueryablePlan>)Joins together the results from several patterns.Public methodStatic memberWhen(IQbservableProvider, array<QueryablePlan[])Joins together the results from several patterns.Public methodStatic memberWhere(IQbservable, Expression<Func<TSource, Boolean>>)Filters the elements of a queryable observable sequence based on a predicate.Public methodStatic memberWhere(IQbservable, Expression<Func<TSource, Int32, Boolean>>)Filters the elements of a queryable observable sequence based on a predicate by incorporating the element's index.Public methodStatic memberWindow(IQbservable, Int32)Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on element count information.Public methodStatic memberWindow(IQbservable, TimeSpan)Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on timing information.Public methodStatic memberWindow(IQbservable, Int32, Int32)Projects each element of a queryable observable sequence into zero or more windows which are produced based on element count information.Public methodStatic memberWindow(IQbservable, TimeSpan, Int32)Projects each element of a queryable observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed.Public methodStatic memberWindow(IQbservable, TimeSpan, IScheduler)Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on timing information.Public methodStatic memberWindow(IQbservable, TimeSpan, TimeSpan)Projects each element of a queryable observable sequence into zero or more windows which are produced based on timing information.Public methodStatic memberWindow(IQbservable, TimeSpan, Int32, IScheduler)Projects each element of a queryable observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed.Public methodStatic memberWindow(IQbservable, TimeSpan, TimeSpan, IScheduler)Projects each element of a queryable observable sequence into zero or more windows which are produced based on timing information.Public methodStatic memberWindow<TSource, TWindowClosing>(IQbservable, Expression<Func<IObservable>>)Projects each element of a queryable observable sequence into consecutive non-overlapping windows.Public methodStatic memberWindow<TSource, TWindowOpening, TWindowClosing>(IQbservable, IObservable, Expression<Func<TWindowOpening, IObservable>>)Projects each element of a queryable observable sequence into zero or more windows.Public methodStatic memberZip<TFirst, TSecond, TResult>(IQbservable, IEnumerable, Expression<Func<TFirst, TSecond, TResult>>)Merges a queryable observable sequence and an enumerable sequence into one queryable observable sequence by using the selector function.Public methodStatic memberZip<TFirst, TSecond, TResult>(IQbservable, IObservable, Expression<Func<TFirst, TSecond, TResult>>)Merges two queryable observable sequences into one queryable observable sequence by combining their elements in a pairwise fashion.Top

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

System.Reactive.Linq Namespace