System.Reactive.Linq
The System.Reactive.Joins namespace contains classes used to express join patterns over observable sequences using fluent method syntax.
Provides a set of extension methods for virtual time scheduling.
Schedules an action to be executed at dueTime.
Absolute time representation type.
Relative time representation type.
Scheduler to execute the action on.
Relative time after which to execute the action.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
or is null.
Schedules an action to be executed at dueTime.
Absolute time representation type.
Relative time representation type.
Scheduler to execute the action on.
Absolute time at which to execute the action.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
or is null.
Attribute applied to static classes providing expression tree forms of query methods,
mapping those to the corresponding methods for local query execution on the specified
target class type.
Creates a new mapping to the specified local execution query method implementation type.
Type with query methods for local execution.
Gets the type with the implementation of local query methods.
Provides a set of static methods for writing in-memory queries over observable sequences.
Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Task that signals the termination of the sequence.
or is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates.
The loop can be quit prematurely by setting the specified cancellation token.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Cancellation token used to stop the loop.
Task that signals the termination of the sequence.
or is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Task that signals the termination of the sequence.
or is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates.
The loop can be quit prematurely by setting the specified cancellation token.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Cancellation token used to stop the loop.
Task that signals the termination of the sequence.
or is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Uses to determine which source in to return, choosing if no match is found.
The type of the value returned by the selector function, used to look up the resulting source.
The type of the elements in the result sequence.
Selector function invoked to determine the source to lookup in the dictionary.
Dictionary of sources to select from based on the invocation result.
Default source to select in case no matching source in is found.
The observable sequence retrieved from the dictionary based on the invocation result, or if no match is found.
or or is null.
Uses to determine which source in to return, choosing an empty sequence on the specified scheduler if no match is found.
The type of the value returned by the selector function, used to look up the resulting source.
The type of the elements in the result sequence.
Selector function invoked to determine the source to lookup in the dictionary.
Dictionary of sources to select from based on the invocation result.
Scheduler to generate an empty sequence on in case no matching source in is found.
The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found.
or or is null.
Uses to determine which source in to return, choosing an empty sequence if no match is found.
The type of the value returned by the selector function, used to look up the resulting source.
The type of the elements in the result sequence.
Selector function invoked to determine the source to lookup in the dictionary.
Dictionary of sources to select from based on the invocation result.
The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found.
or is null.
Repeats the given as long as the specified holds, where the is evaluated after each repeated completed.
The type of the elements in the source sequence.
Source to repeat as long as the function evaluates to true.
Condition that will be evaluated upon the completion of an iteration through the , to determine whether repetition of the source is required.
The observable sequence obtained by concatenating the sequence as long as the holds.
or is null.
Concatenates the observable sequences obtained by running the for each element in the given enumerable .
The type of the elements in the enumerable source sequence.
The type of the elements in the observable result sequence.
Enumerable source for which each element will be mapped onto an observable source that will be concatenated in the result sequence.
Function to select an observable source for each element in the .
The observable sequence obtained by concatenating the sources returned by for each element in the .
or is null.
If the specified evaluates true, select the sequence. Otherwise, select the sequence.
The type of the elements in the result sequence.
Condition evaluated to decide which sequence to return.
Sequence returned in case evaluates true.
Sequence returned in case evaluates false.
if evaluates true; otherwise.
or or is null.
If the specified evaluates true, select the sequence. Otherwise, return an empty sequence.
The type of the elements in the result sequence.
Condition evaluated to decide which sequence to return.
Sequence returned in case evaluates true.
if evaluates true; an empty sequence otherwise.
or is null.
If the specified evaluates true, select the sequence. Otherwise, return an empty sequence generated on the specified scheduler.
The type of the elements in the result sequence.
Condition evaluated to decide which sequence to return.
Sequence returned in case evaluates true.
Scheduler to generate an empty sequence on in case evaluates false.
if evaluates true; an empty sequence otherwise.
or or is null.
Repeats the given as long as the specified holds, where the is evaluated before each repeated is subscribed to.
The type of the elements in the source sequence.
Source to repeat as long as the function evaluates to true.
Condition that will be evaluated before subscription to the , to determine whether repetition of the source is required.
The observable sequence obtained by concatenating the sequence as long as the holds.
or is null.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the twelfth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the twelfth argument passed to the begin delegate.
The type of the thirteenth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the twelfth argument passed to the begin delegate.
The type of the thirteenth argument passed to the begin delegate.
The type of the fourteenth argument passed to the begin delegate.
The type of the result returned by the end delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the twelfth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the twelfth argument passed to the begin delegate.
The type of the thirteenth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Converts a Begin/End invoke function pair into an asynchronous function.
The type of the first argument passed to the begin delegate.
The type of the second argument passed to the begin delegate.
The type of the third argument passed to the begin delegate.
The type of the fourth argument passed to the begin delegate.
The type of the fifth argument passed to the begin delegate.
The type of the sixth argument passed to the begin delegate.
The type of the seventh argument passed to the begin delegate.
The type of the eighth argument passed to the begin delegate.
The type of the ninth argument passed to the begin delegate.
The type of the tenth argument passed to the begin delegate.
The type of the eleventh argument passed to the begin delegate.
The type of the twelfth argument passed to the begin delegate.
The type of the thirteenth argument passed to the begin delegate.
The type of the fourteenth argument passed to the begin delegate.
The delegate that begins the asynchronous operation.
The delegate that ends the asynchronous operation.
Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
or is null.
Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
Invokes the specified function asynchronously, surfacing the result through an observable sequence.
The type of the result returned by the function.
Function to run asynchronously.
An observable sequence exposing the function's result value, or an exception.
is null.
- The function is called immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the function's result.
Invokes the specified function asynchronously on the specified scheduler, surfacing the result through an observable sequence
The type of the result returned by the function.
Function to run asynchronously.
Scheduler to run the function on.
An observable sequence exposing the function's result value, or an exception.
or is null.
- The function is called immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the function's result.
Invokes the asynchronous function, surfacing the result through an observable sequence.
The type of the result returned by the asynchronous function.
Asynchronous function to run.
An observable sequence exposing the function's result value, or an exception.
is null.
- The function is started immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the function's result.
Invokes the asynchronous function, surfacing the result through an observable sequence.
The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
The type of the result returned by the asynchronous function.
Asynchronous function to run.
An observable sequence exposing the function's result value, or an exception.
is null.
- The function is started immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the function's result.
-
If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
multicast operators.
Invokes the action asynchronously, surfacing the result through an observable sequence.
Action to run asynchronously.
An observable sequence exposing a Unit value upon completion of the action, or an exception.
is null.
- The action is called immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the action's outcome.
Invokes the action asynchronously on the specified scheduler, surfacing the result through an observable sequence.
Action to run asynchronously.
Scheduler to run the action on.
An observable sequence exposing a Unit value upon completion of the action, or an exception.
or is null.
- The action is called immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the action's outcome.
Invokes the asynchronous action, surfacing the result through an observable sequence.
Asynchronous action to run.
An observable sequence exposing a Unit value upon completion of the action, or an exception.
is null.
- The action is started immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the action's outcome.
Invokes the asynchronous action, surfacing the result through an observable sequence.
The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
Asynchronous action to run.
An observable sequence exposing a Unit value upon completion of the action, or an exception.
is null.
- The action is started immediately, not during the subscription of the resulting sequence.
- Multiple subscriptions to the resulting sequence can observe the action's outcome.
-
If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
multicast operators.
Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
The type of the result returned by the asynchronous function.
Asynchronous function to convert.
An observable sequence exposing the result of invoking the function, or an exception.
is null.
Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation.
The type of the result returned by the asynchronous function.
Asynchronous function to convert.
An observable sequence exposing the result of invoking the function, or an exception.
is null.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
Asynchronous action to convert.
An observable sequence exposing a Unit value upon completion of the action, or an exception.
is null.
Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation.
Asynchronous action to convert.
An observable sequence exposing a Unit value upon completion of the action, or an exception.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the fourteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the fourteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the fourteenth argument passed to the function.
The type of the fifteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the fourteenth argument passed to the function.
The type of the fifteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the fourteenth argument passed to the function.
The type of the fifteenth argument passed to the function.
The type of the sixteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Asynchronous function.
is null.
Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
The type of the first argument passed to the function.
The type of the second argument passed to the function.
The type of the third argument passed to the function.
The type of the fourth argument passed to the function.
The type of the fifth argument passed to the function.
The type of the sixth argument passed to the function.
The type of the seventh argument passed to the function.
The type of the eighth argument passed to the function.
The type of the ninth argument passed to the function.
The type of the tenth argument passed to the function.
The type of the eleventh argument passed to the function.
The type of the twelfth argument passed to the function.
The type of the thirteenth argument passed to the function.
The type of the fourteenth argument passed to the function.
The type of the fifteenth argument passed to the function.
The type of the sixteenth argument passed to the function.
The type of the result returned by the function.
Function to convert to an asynchronous function.
Scheduler to invoke the original function on.
Asynchronous function.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
The type of the fourteenth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
The type of the fourteenth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
The type of the fourteenth argument passed to the action.
The type of the fifteenth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
The type of the fourteenth argument passed to the action.
The type of the fifteenth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
The type of the fourteenth argument passed to the action.
The type of the fifteenth argument passed to the action.
The type of the sixteenth argument passed to the action.
Action to convert to an asynchronous action.
Asynchronous action.
is null.
Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
The type of the first argument passed to the action.
The type of the second argument passed to the action.
The type of the third argument passed to the action.
The type of the fourth argument passed to the action.
The type of the fifth argument passed to the action.
The type of the sixth argument passed to the action.
The type of the seventh argument passed to the action.
The type of the eighth argument passed to the action.
The type of the ninth argument passed to the action.
The type of the tenth argument passed to the action.
The type of the eleventh argument passed to the action.
The type of the twelfth argument passed to the action.
The type of the thirteenth argument passed to the action.
The type of the fourteenth argument passed to the action.
The type of the fifteenth argument passed to the action.
The type of the sixteenth argument passed to the action.
Action to convert to an asynchronous action.
Scheduler to invoke the original action on.
Asynchronous action.
or is null.
Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The delegate type of the event to be converted.
The type of the sender that raises the event.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The delegate type of the event to be converted.
The type of the sender that raises the event.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains data representations of invocations of the underlying .NET event.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the target object type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
Object instance that exposes the event to convert.
Name of the event to convert.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the target object type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
Object instance that exposes the event to convert.
Name of the event to convert.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the target object type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the event data generated by the event.
Object instance that exposes the event to convert.
Name of the event to convert.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the target object type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the event data generated by the event.
Object instance that exposes the event to convert.
Name of the event to convert.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the target object type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the sender that raises the event.
The type of the event data generated by the event.
Object instance that exposes the event to convert.
Name of the event to convert.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the target object type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the sender that raises the event.
The type of the event data generated by the event.
Object instance that exposes the event to convert.
Name of the event to convert.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the specified type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
Type that exposes the static event to convert.
Name of the event to convert.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the specified type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
Type that exposes the static event to convert.
Name of the event to convert.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the specified type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the event data generated by the event.
Type that exposes the static event to convert.
Name of the event to convert.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the specified type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the event data generated by the event.
Type that exposes the static event to convert.
Name of the event to convert.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the specified type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the sender that raises the event.
The type of the event data generated by the event.
Type that exposes the static event to convert.
Name of the event to convert.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
Each event invocation is surfaced through an OnNext message in the resulting sequence.
Reflection is used to discover the event based on the specified type and the specified event name.
For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
The type of the sender that raises the event.
The type of the event data generated by the event.
Type that exposes the static event to convert.
Name of the event to convert.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains data representations of invocations of the underlying .NET event.
or or is null.
The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
The delegate type of the event to be converted.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
The type of the event data generated by the event.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
making the Subscribe or Dispose call, respectively.
It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
more concise and easier to understand.
Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
Action that attaches the given event handler to the underlying .NET event.
Action that detaches the given event handler from the underlying .NET event.
The scheduler to run the add and remove event handler logic on.
The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
or or is null.
Add and remove handler invocations are made whenever the number of observers grows beyond zero.
As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
accessed from the same context, as required by some UI frameworks.
It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
parameter. For more information, see the remarks section on those overloads.
Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
For aggregation behavior with incremental intermediate results, see .
The type of the elements in the source sequence.
The type of the result of the aggregation.
An observable sequence to aggregate over.
The initial accumulator value.
An accumulator function to be invoked on each element.
An observable sequence containing a single element with the final accumulator value.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value,
and the specified result selector function is used to select the result value.
The type of the elements in the source sequence.
The type of the accumulator value.
The type of the resulting value.
An observable sequence to aggregate over.
The initial accumulator value.
An accumulator function to be invoked on each element.
A function to transform the final accumulator value into the result value.
An observable sequence containing a single element with the final accumulator value.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence.
For aggregation behavior with incremental intermediate results, see .
The type of the elements in the source sequence and the result of the aggregation.
An observable sequence to aggregate over.
An accumulator function to be invoked on each element.
An observable sequence containing a single element with the final accumulator value.
or is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether all elements of an observable sequence satisfy a condition.
The type of the elements in the source sequence.
An observable sequence whose elements to apply the predicate to.
A function to test each element for a condition.
An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether an observable sequence contains any elements.
The type of the elements in the source sequence.
An observable sequence to check for non-emptiness.
An observable sequence containing a single element determining whether the source sequence contains any elements.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether any element of an observable sequence satisfies a condition.
The type of the elements in the source sequence.
An observable sequence whose elements to apply the predicate to.
A function to test each element for a condition.
An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values.
A sequence of values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values.
is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values.
A sequence of values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values.
is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values.
A sequence of values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values.
is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values.
A sequence of values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values.
is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values.
A sequence of values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values.
is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values.
A sequence of nullable values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values.
A sequence of nullable values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values.
A sequence of nullable values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values.
A sequence of nullable values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
(Asynchronous) The sum of the elements in the source sequence is larger than .
Computes the average of an observable sequence of nullable values.
A sequence of nullable values to calculate the average of.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values.
or is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values.
or is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values.
or is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values.
or is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values.
or is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
or is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
or is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
or is null.
(Asynchronous) The source sequence is empty.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
or is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values to calculate the average of.
A transform function to apply to each element.
An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
or is null.
(Asynchronous) The source sequence is empty.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether an observable sequence contains a specified element by using the default equality comparer.
The type of the elements in the source sequence.
An observable sequence in which to locate a value.
The value to locate in the source sequence.
An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>.
The type of the elements in the source sequence.
An observable sequence in which to locate a value.
The value to locate in the source sequence.
An equality comparer to compare elements.
An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns an observable sequence containing an that represents the total number of elements in an observable sequence.
The type of the elements in the source sequence.
An observable sequence that contains elements to be counted.
An observable sequence containing a single element with the number of elements in the input sequence.
is null.
(Asynchronous) The number of elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition.
The type of the elements in the source sequence.
An observable sequence that contains elements to be counted.
A function to test each element for a condition.
An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the element at a specified index in a sequence.
The type of the elements in the source sequence.
Observable sequence to return the element from.
The zero-based index of the element to retrieve.
An observable sequence that produces the element at the specified position in the source sequence.
is null.
is less than zero.
(Asynchronous) is greater than or equal to the number of elements in the source sequence.
Returns the element at a specified index in a sequence or a default value if the index is out of range.
The type of the elements in the source sequence.
Observable sequence to return the element from.
The zero-based index of the element to retrieve.
An observable sequence that produces the element at the specified position in the source sequence, or a default value if the index is outside the bounds of the source sequence.
is null.
is less than zero.
Returns the first element of an observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
Sequence containing the first element in the observable sequence.
is null.
(Asynchronous) The source sequence is empty.
Returns the first element of an observable sequence that satisfies the condition in the predicate.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
Sequence containing the first element in the observable sequence that satisfies the condition in the predicate.
or is null.
(Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty.
Returns the first element of an observable sequence, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
Sequence containing the first element in the observable sequence, or a default value if no such element exists.
is null.
Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
Sequence containing the first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
or is null.
Determines whether an observable sequence is empty.
The type of the elements in the source sequence.
An observable sequence to check for emptiness.
An observable sequence containing a single element determining whether the source sequence is empty.
is null.
Returns the last element of an observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
Sequence containing the last element in the observable sequence.
is null.
(Asynchronous) The source sequence is empty.
Returns the last element of an observable sequence that satisfies the condition in the predicate.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
Sequence containing the last element in the observable sequence that satisfies the condition in the predicate.
or is null.
(Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty.
Returns the last element of an observable sequence, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
Sequence containing the last element in the observable sequence, or a default value if no such element exists.
is null.
Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
Sequence containing the last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
or is null.
Returns an observable sequence containing an that represents the total number of elements in an observable sequence.
The type of the elements in the source sequence.
An observable sequence that contains elements to be counted.
An observable sequence containing a single element with the number of elements in the input sequence.
is null.
(Asynchronous) The number of elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition.
The type of the elements in the source sequence.
An observable sequence that contains elements to be counted.
A function to test each element for a condition.
An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum element in an observable sequence.
The type of the elements in the source sequence.
An observable sequence to determine the maximum element of.
An observable sequence containing a single element with the maximum element in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence according to the specified comparer.
The type of the elements in the source sequence.
An observable sequence to determine the maximum element of.
Comparer used to compare elements.
An observable sequence containing a single element with the maximum element in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of values.
A sequence of values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of values.
A sequence of values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of values.
A sequence of values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of values.
A sequence of values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of values.
A sequence of values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of nullable values.
A sequence of nullable values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of nullable values.
A sequence of nullable values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of nullable values.
A sequence of nullable values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of nullable values.
A sequence of nullable values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the maximum value in an observable sequence of nullable values.
A sequence of nullable values to determine the maximum value of.
An observable sequence containing a single element with the maximum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value.
The type of the elements in the source sequence.
The type of the objects derived from the elements in the source sequence to determine the maximum of.
An observable sequence to determine the mimimum element of.
A transform function to apply to each element.
An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value according to the specified comparer.
The type of the elements in the source sequence.
The type of the objects derived from the elements in the source sequence to determine the maximum of.
An observable sequence to determine the mimimum element of.
A transform function to apply to each element.
Comparer used to compare elements.
An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the maximum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the maximum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the elements in an observable sequence with the maximum key value.
The type of the elements in the source sequence.
The type of the key computed for each element in the source sequence.
An observable sequence to get the maximum elements for.
Key selector function.
An observable sequence containing a list of zero or more elements that have a maximum key value.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the elements in an observable sequence with the maximum key value according to the specified comparer.
The type of the elements in the source sequence.
The type of the key computed for each element in the source sequence.
An observable sequence to get the maximum elements for.
Key selector function.
Comparer used to compare key values.
An observable sequence containing a list of zero or more elements that have a maximum key value.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum element in an observable sequence.
The type of the elements in the source sequence.
An observable sequence to determine the mimimum element of.
An observable sequence containing a single element with the minimum element in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum element in an observable sequence according to the specified comparer.
The type of the elements in the source sequence.
An observable sequence to determine the mimimum element of.
Comparer used to compare elements.
An observable sequence containing a single element with the minimum element in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of values.
A sequence of values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of values.
A sequence of values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of values.
A sequence of values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of values.
A sequence of values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of values.
A sequence of values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of nullable values.
A sequence of nullable values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of nullable values.
A sequence of nullable values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of nullable values.
A sequence of nullable values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of nullable values.
A sequence of nullable values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the minimum value in an observable sequence of nullable values.
A sequence of nullable values to determine the minimum value of.
An observable sequence containing a single element with the minimum value in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value.
The type of the elements in the source sequence.
The type of the objects derived from the elements in the source sequence to determine the minimum of.
An observable sequence to determine the mimimum element of.
A transform function to apply to each element.
An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value according to the specified comparer.
The type of the elements in the source sequence.
The type of the objects derived from the elements in the source sequence to determine the minimum of.
An observable sequence to determine the mimimum element of.
A transform function to apply to each element.
Comparer used to compare elements.
An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Invokes a transform function on each element of a sequence and returns the minimum nullable value.
The type of the elements in the source sequence.
A sequence of values to determine the minimum value of.
A transform function to apply to each element.
An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the elements in an observable sequence with the minimum key value.
The type of the elements in the source sequence.
The type of the key computed for each element in the source sequence.
An observable sequence to get the minimum elements for.
Key selector function.
An observable sequence containing a list of zero or more elements that have a minimum key value.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the elements in an observable sequence with the minimum key value according to the specified comparer.
The type of the elements in the source sequence.
The type of the key computed for each element in the source sequence.
An observable sequence to get the minimum elements for.
Key selector function.
Comparer used to compare key values.
An observable sequence containing a list of zero or more elements that have a minimum key value.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether two sequences are equal by comparing the elements pairwise.
The type of the elements in the source sequence.
First observable sequence to compare.
Second observable sequence to compare.
An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer.
The type of the elements in the source sequence.
First observable sequence to compare.
Second observable sequence to compare.
Comparer used to compare elements of both sequences.
An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise.
The type of the elements in the source sequence.
First observable sequence to compare.
Second observable sequence to compare.
An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise using a specified equality comparer.
The type of the elements in the source sequence.
First observable sequence to compare.
Second observable sequence to compare.
Comparer used to compare elements of both sequences.
An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Returns the only element of an observable sequence, and reports an exception if there is not exactly one element in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
Sequence containing the single element in the observable sequence.
is null.
(Asynchronous) The source sequence contains more than one element. -or- The source sequence is empty.
Returns the only element of an observable sequence that satisfies the condition in the predicate, and reports an exception if there is not exactly one element in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
Sequence containing the single element in the observable sequence that satisfies the condition in the predicate.
or is null.
(Asynchronous) No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty.
Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method reports an exception if there is more than one element in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
Sequence containing the single element in the observable sequence, or a default value if no such element exists.
is null.
(Asynchronous) The source sequence contains more than one element.
Returns the only element of an observable sequence that matches the predicate, or a default value if no such element exists; this method reports an exception if there is more than one element in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
Sequence containing the single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
or is null.
(Asynchronous) The sequence contains more than one element that satisfies the condition in the predicate.
Computes the sum of a sequence of values.
A sequence of values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values.
A sequence of values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values.
A sequence of values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values.
A sequence of values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values.
A sequence of values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values.
A sequence of nullable values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values.
A sequence of nullable values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values.
A sequence of nullable values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values.
A sequence of nullable values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values.
A sequence of nullable values to calculate the sum of.
An observable sequence containing a single element with the sum of the values in the source sequence.
is null.
(Asynchronous) The sum of the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
The type of the elements in the source sequence.
A sequence of values that are used to calculate a sum.
A transform function to apply to each element.
An observable sequence containing a single element with the sum of the values in the source sequence.
or is null.
(Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates an array from an observable sequence.
The type of the elements in the source sequence.
The source observable sequence to get an array of elements for.
An observable sequence containing a single element with an array containing all the elements of the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a dictionary from an observable sequence according to a specified key selector function.
The type of the elements in the source sequence.
The type of the dictionary key computed for each element in the source sequence.
An observable sequence to create a dictionary for.
A function to extract a key from each element.
An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer.
The type of the elements in the source sequence.
The type of the dictionary key computed for each element in the source sequence.
An observable sequence to create a dictionary for.
A function to extract a key from each element.
An equality comparer to compare keys.
An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function.
The type of the elements in the source sequence.
The type of the dictionary key computed for each element in the source sequence.
The type of the dictionary value computed for each element in the source sequence.
An observable sequence to create a dictionary for.
A function to extract a key from each element.
A transform function to produce a result element value from each element.
An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
The type of the elements in the source sequence.
The type of the dictionary key computed for each element in the source sequence.
The type of the dictionary value computed for each element in the source sequence.
An observable sequence to create a dictionary for.
A function to extract a key from each element.
A transform function to produce a result element value from each element.
An equality comparer to compare keys.
An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
or or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a list from an observable sequence.
The type of the elements in the source sequence.
The source observable sequence to get a list of elements for.
An observable sequence containing a single element with a list containing all the elements of the source sequence.
is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a lookup from an observable sequence according to a specified key selector function.
The type of the elements in the source sequence.
The type of the lookup key computed for each element in the source sequence.
An observable sequence to create a lookup for.
A function to extract a key from each element.
An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a lookup from an observable sequence according to a specified key selector function, and a comparer.
The type of the elements in the source sequence.
The type of the lookup key computed for each element in the source sequence.
An observable sequence to create a lookup for.
A function to extract a key from each element.
An equality comparer to compare keys.
An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function.
The type of the elements in the source sequence.
The type of the lookup key computed for each element in the source sequence.
The type of the lookup value computed for each element in the source sequence.
An observable sequence to create a lookup for.
A function to extract a key from each element.
A transform function to produce a result element value from each element.
An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
The type of the elements in the source sequence.
The type of the lookup key computed for each element in the source sequence.
The type of the lookup value computed for each element in the source sequence.
An observable sequence to create a lookup for.
A function to extract a key from each element.
A transform function to produce a result element value from each element.
An equality comparer to compare keys.
An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
or or or is null.
The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
This operation subscribes to the observable sequence, making it hot.
The type of the elements in the source sequence.
Source sequence to await.
Object that can be awaited.
is null.
Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
This operation subscribes and connects to the observable sequence, making it hot.
The type of the elements in the source sequence.
Source sequence to await.
Object that can be awaited.
is null.
Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
This operation subscribes to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription.
The type of the elements in the source sequence.
Source sequence to await.
Cancellation token.
Object that can be awaited.
is null.
Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
This operation subscribes and connects to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription and connection.
The type of the elements in the source sequence.
Source sequence to await.
Cancellation token.
Object that can be awaited.
is null.
Multicasts the source sequence notifications through the specified subject to the resulting connectable observable. Upon connection of the
connectable observable, the subject is subscribed to the source exactly one, and messages are forwarded to the observers registered with
the connectable observable. For specializations with fixed subject types, see Publish, PublishLast, and Replay.
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be pushed into the specified subject.
Subject to push source elements into.
A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject.
or is null.
Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each
subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's
invocation. For specializations with fixed subject types, see Publish, PublishLast, and Replay.
The type of the elements in the source sequence.
The type of the elements produced by the intermediate subject.
The type of the elements in the result sequence.
Source sequence which will be multicasted in the specified selector function.
Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function.
Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or or is null.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence.
This operator is a specialization of Multicast using a regular .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
Subscribers will receive all notifications of the source from the time of the subscription on.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence.
This operator is a specialization of Multicast using a regular .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all notifications of the source from the time of the subscription on.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Initial value received by observers upon subscription.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.
Initial value received by observers upon subscription.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
Subscribers will only receive the last notification of the source.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will only receive the last notification of the source.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
The type of the elements in the source sequence.
Connectable observable sequence.
An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
is null.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
Subscribers will receive all the notifications of the source.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Scheduler where connected observers will be invoked on.
A connectable observable sequence that shares a single subscription to the underlying sequence.
or is null.
Subscribers will receive all the notifications of the source.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source.
Scheduler where connected observers within the selector function will be invoked on.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or or is null.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Maximum time length of the replay buffer.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
is less than TimeSpan.Zero.
Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Maximum time length of the replay buffer.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
is less than TimeSpan.Zero.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Maximum time length of the replay buffer.
Scheduler where connected observers will be invoked on.
A connectable observable sequence that shares a single subscription to the underlying sequence.
or is null.
is less than TimeSpan.Zero.
Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Maximum time length of the replay buffer.
Scheduler where connected observers within the selector function will be invoked on.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or or is null.
is less than TimeSpan.Zero.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Maximum element count of the replay buffer.
Scheduler where connected observers will be invoked on.
A connectable observable sequence that shares a single subscription to the underlying sequence.
or is null.
is less than zero.
Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Maximum element count of the replay buffer.
Scheduler where connected observers within the selector function will be invoked on.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or or is null.
is less than zero.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Maximum element count of the replay buffer.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
is less than zero.
Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Maximum element count of the replay buffer.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
is less than zero.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Maximum element count of the replay buffer.
Maximum time length of the replay buffer.
A connectable observable sequence that shares a single subscription to the underlying sequence.
is null.
is less than zero.
is less than TimeSpan.Zero.
Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Maximum element count of the replay buffer.
Maximum time length of the replay buffer.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or is null.
is less than zero.
is less than TimeSpan.Zero.
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Maximum element count of the replay buffer.
Maximum time length of the replay buffer.
Scheduler where connected observers will be invoked on.
A connectable observable sequence that shares a single subscription to the underlying sequence.
or is null.
is less than zero.
is less than TimeSpan.Zero.
Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
This operator is a specialization of Multicast using a .
The type of the elements in the source sequence.
The type of the elements in the result sequence.
Source sequence whose elements will be multicasted through a single shared subscription.
Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
Maximum element count of the replay buffer.
Maximum time length of the replay buffer.
Scheduler where connected observers within the selector function will be invoked on.
An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
or or is null.
is less than zero.
is less than TimeSpan.Zero.
Produces an enumerable sequence of consecutive (possibly empty) chunks of the source sequence.
The type of the elements in the source sequence.
Source observable sequence.
The enumerable sequence that returns consecutive (possibly empty) chunks upon each iteration.
is null.
Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations.
The type of the elements in the source sequence.
The type of the elements produced by the merge operation during collection.
Source observable sequence.
Factory to create a new collector object.
Merges a sequence element with the current collector.
The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration.
or or is null.
Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations.
The type of the elements in the source sequence.
The type of the elements produced by the merge operation during collection.
Source observable sequence.
Factory to create the initial collector object.
Merges a sequence element with the current collector.
Factory to replace the current collector by a new collector.
The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration.
or or or is null.
Returns the first element of an observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
The first element in the observable sequence.
is null.
The source sequence is empty.
Returns the first element of an observable sequence that satisfies the condition in the predicate.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
The first element in the observable sequence that satisfies the condition in the predicate.
or is null.
No element satisfies the condition in the predicate. -or- The source sequence is empty.
Returns the first element of an observable sequence, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
The first element in the observable sequence, or a default value if no such element exists.
is null.
Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
The first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
or is null.
Invokes an action for each element in the observable sequence, and blocks until the sequence is terminated.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
or is null.
Because of its blocking nature, this operator is mainly used for testing.
Invokes an action for each element in the observable sequence, incorporating the element's index, and blocks until the sequence is terminated.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
or is null.
Because of its blocking nature, this operator is mainly used for testing.
Returns an enumerator that enumerates all values of the observable sequence.
The type of the elements in the source sequence.
An observable sequence to get an enumerator for.
The enumerator that can be used to enumerate over the elements in the observable sequence.
is null.
Returns the last element of an observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
The last element in the observable sequence.
is null.
The source sequence is empty.
Returns the last element of an observable sequence that satisfies the condition in the predicate.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
The last element in the observable sequence that satisfies the condition in the predicate.
or is null.
No element satisfies the condition in the predicate. -or- The source sequence is empty.
Returns the last element of an observable sequence, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
The last element in the observable sequence, or a default value if no such element exists.
is null.
Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
The last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
or is null.
Returns an enumerable sequence whose enumeration returns the latest observed element in the source observable sequence.
Enumerators on the resulting sequence will never produce the same element repeatedly, and will block until the next element becomes available.
The type of the elements in the source sequence.
Source observable sequence.
The enumerable sequence that returns the last sampled element upon each iteration and subsequently blocks until the next element in the observable source sequence becomes available.
Returns an enumerable sequence whose enumeration returns the most recently observed element in the source observable sequence, using the specified initial value in case no element has been sampled yet.
Enumerators on the resulting sequence never block and can produce the same element repeatedly.
The type of the elements in the source sequence.
Source observable sequence.
Initial value that will be yielded by the enumerable sequence if no element has been sampled yet.
The enumerable sequence that returns the last sampled element upon each iteration.
is null.
Returns an enumerable sequence whose enumeration blocks until the next element in the source observable sequence becomes available.
Enumerators on the resulting sequence will block until the next element becomes available.
The type of the elements in the source sequence.
Source observable sequence.
The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available.
is null.
Returns the only element of an observable sequence, and throws an exception if there is not exactly one element in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
The single element in the observable sequence.
is null.
The source sequence contains more than one element. -or- The source sequence is empty.
Returns the only element of an observable sequence that satisfies the condition in the predicate, and throws an exception if there is not exactly one element matching the predicate in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
The single element in the observable sequence that satisfies the condition in the predicate.
or is null.
No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty.
Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method throws an exception if there is more than one element in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
The single element in the observable sequence, or a default value if no such element exists.
is null.
The source sequence contains more than one element.
Returns the only element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists; this method throws an exception if there is more than one element matching the predicate in the observable sequence.
The type of the elements in the source sequence.
Source observable sequence.
A predicate function to evaluate for elements in the source sequence.
The single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
or is null.
The sequence contains more than one element that satisfies the condition in the predicate.
Waits for the observable sequence to complete and returns the last element of the sequence.
If the sequence terminates with an OnError notification, the exception is throw.
The type of the elements in the source sequence.
Source observable sequence.
The last element in the observable sequence.
is null.
The source sequence is empty.
Wraps the source sequence in order to run its observer callbacks on the specified scheduler.
The type of the elements in the source sequence.
Source sequence.
Scheduler to notify observers on.
The source sequence whose observations happen on the specified scheduler.
or is null.
This only invokes observer callbacks on a scheduler. In case the subscription and/or unsubscription actions have side-effects
that require to be run on a scheduler, use .
Wraps the source sequence in order to run its observer callbacks on the specified synchronization context.
The type of the elements in the source sequence.
Source sequence.
Synchronization context to notify observers on.
The source sequence whose observations happen on the specified synchronization context.
or is null.
This only invokes observer callbacks on a synchronization context. In case the subscription and/or unsubscription actions have side-effects
that require to be run on a synchronization context, use .
Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used;
see the remarks section for more information on the distinction between SubscribeOn and ObserveOn.
The type of the elements in the source sequence.
Source sequence.
Scheduler to perform subscription and unsubscription actions on.
The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.
or is null.
This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer
callbacks on a scheduler, use .
Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. This operation is not commonly used;
see the remarks section for more information on the distinction between SubscribeOn and ObserveOn.
The type of the elements in the source sequence.
Source sequence.
Synchronization context to perform subscription and unsubscription actions on.
The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.
or is null.
This only performs the side-effects of subscription and unsubscription on the specified synchronization context. In order to invoke observer
callbacks on a synchronization context, use .
Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently.
This overload is useful to "fix" an observable sequence that exhibits concurrent callbacks on individual observers, which is invalid behavior for the query processor.
The type of the elements in the source sequence.
Source sequence.
The source sequence whose outgoing calls to observers are synchronized.
is null.
It's invalid behavior - according to the observer grammar - for a sequence to exhibit concurrent callbacks on a given observer.
This operator can be used to "fix" a source that doesn't conform to this rule.
Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently, using the specified gate object.
This overload is useful when writing n-ary query operators, in order to prevent concurrent callbacks from different sources by synchronizing on a common gate object.
The type of the elements in the source sequence.
Source sequence.
Gate object to synchronize each observer call on.
The source sequence whose outgoing calls to observers are synchronized on the given gate object.
or is null.
Subscribes an observer to an enumerable sequence.
The type of the elements in the source sequence.
Enumerable sequence to subscribe to.
Observer that will receive notifications from the enumerable sequence.
Disposable object that can be used to unsubscribe the observer from the enumerable
or is null.
Subscribes an observer to an enumerable sequence, using the specified scheduler to run the enumeration loop.
The type of the elements in the source sequence.
Enumerable sequence to subscribe to.
Observer that will receive notifications from the enumerable sequence.
Scheduler to perform the enumeration on.
Disposable object that can be used to unsubscribe the observer from the enumerable
or or is null.
Converts an observable sequence to an enumerable sequence.
The type of the elements in the source sequence.
An observable sequence to convert to an enumerable sequence.
The enumerable sequence containing the elements in the observable sequence.
is null.
Exposes an observable sequence as an object with an Action-based .NET event.
Observable source sequence.
The event source object.
is null.
Exposes an observable sequence as an object with an Action<TSource>-based .NET event.
The type of the elements in the source sequence.
Observable source sequence.
The event source object.
is null.
Exposes an observable sequence as an object with a .NET event, conforming to the standard .NET event pattern.
The type of the event data generated by the event.
Observable source sequence.
The event source object.
is null.
Converts an enumerable sequence to an observable sequence.
The type of the elements in the source sequence.
Enumerable sequence to convert to an observable sequence.
The observable sequence whose elements are pulled from the given enumerable sequence.
is null.
Converts an enumerable sequence to an observable sequence, using the specified scheduler to run the enumeration loop.
The type of the elements in the source sequence.
Enumerable sequence to convert to an observable sequence.
Scheduler to run the enumeration of the input sequence on.
The observable sequence whose elements are pulled from the given enumerable sequence.
or is null.
Creates an observable sequence from a specified Subscribe method implementation.
The type of the elements in the produced sequence.
Implementation of the resulting observable sequence's Subscribe method.
The observable sequence with the specified implementation for the Subscribe method.
is null.
Use of this operator is preferred over manual implementation of the IObservable<T> interface. In case
you need a type implementing IObservable<T> rather than an anonymous implementation, consider using
the abstract base class.
Creates an observable sequence from a specified Subscribe method implementation.
The type of the elements in the produced sequence.
Implementation of the resulting observable sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
The observable sequence with the specified implementation for the Subscribe method.
is null.
Use of this operator is preferred over manual implementation of the IObservable<T> interface. In case
you need a type implementing IObservable<T> rather than an anonymous implementation, consider using
the abstract base class.
Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
The type of the elements in the produced sequence.
Asynchronous method used to produce elements.
The observable sequence surfacing the elements produced by the asynchronous method.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
Creates an observable sequence from a specified asynchronous Subscribe method.
The type of the elements in the produced sequence.
Asynchronous method used to produce elements.
The observable sequence surfacing the elements produced by the asynchronous method.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
The type of the elements in the produced sequence.
Asynchronous method used to implemented the resulting sequence's Subscribe method.
The observable sequence with the specified implementation for the Subscribe method.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
Creates an observable sequence from a specified asynchronous Subscribe method.
The type of the elements in the produced sequence.
Asynchronous method used to implemented the resulting sequence's Subscribe method.
The observable sequence with the specified implementation for the Subscribe method.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
The type of the elements in the produced sequence.
Asynchronous method used to implemented the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
The observable sequence with the specified implementation for the Subscribe method.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
Creates an observable sequence from a specified asynchronous Subscribe method.
The type of the elements in the produced sequence.
Asynchronous method used to implemented the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
The observable sequence with the specified implementation for the Subscribe method.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes.
The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
Observable factory function to invoke for each observer that subscribes to the resulting sequence.
An observable sequence whose observers trigger an invocation of the given observable factory function.
is null.
Returns an observable sequence that starts the specified asynchronous factory function whenever a new observer subscribes.
The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
Asynchronous factory function to start for each observer that subscribes to the resulting sequence.
An observable sequence whose observers trigger the given asynchronous observable factory function to be started.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
Returns an observable sequence that starts the specified cancellable asynchronous factory function whenever a new observer subscribes.
The CancellationToken passed to the asynchronous factory function is tied to the returned disposable subscription, allowing best-effort cancellation.
The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
Asynchronous factory function to start for each observer that subscribes to the resulting sequence.
An observable sequence whose observers trigger the given asynchronous observable factory function to be started.
is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous observable factory function will be signaled.
Returns an empty observable sequence.
The type used for the IObservable<T> type parameter of the resulting sequence.
An observable sequence with no elements.
Returns an empty observable sequence.
The type used for the IObservable<T> type parameter of the resulting sequence.
Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
An observable sequence with no elements.
Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.
The type used for the IObservable<T> type parameter of the resulting sequence.
Scheduler to send the termination call on.
An observable sequence with no elements.
is null.
Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.
The type used for the IObservable<T> type parameter of the resulting sequence.
Scheduler to send the termination call on.
Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
An observable sequence with no elements.
is null.
Generates an observable sequence by running a state-driven loop producing the sequence's elements.
The type of the state used in the generator loop.
The type of the elements in the produced sequence.
Initial state.
Condition to terminate generation (upon returning false).
Iteration step function.
Selector function for results produced in the sequence.
The generated sequence.
or or is null.
Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages.
The type of the state used in the generator loop.
The type of the elements in the produced sequence.
Initial state.
Condition to terminate generation (upon returning false).
Iteration step function.
Selector function for results produced in the sequence.
Scheduler on which to run the generator loop.
The generated sequence.
or or or is null.
Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
The type used for the IObservable<T> type parameter of the resulting sequence.
An observable sequence whose observers will never get called.
Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
The type used for the IObservable<T> type parameter of the resulting sequence.
Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
An observable sequence whose observers will never get called.
Generates an observable sequence of integral numbers within a specified range.
The value of the first integer in the sequence.
The number of sequential integers to generate.
An observable sequence that contains a range of sequential integral numbers.
is less than zero. -or- + - 1 is larger than .
Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages.
The value of the first integer in the sequence.
The number of sequential integers to generate.
Scheduler to run the generator loop on.
An observable sequence that contains a range of sequential integral numbers.
is less than zero. -or- + - 1 is larger than .
is null.
Generates an observable sequence that repeats the given element infinitely.
The type of the element that will be repeated in the produced sequence.
Element to repeat.
An observable sequence that repeats the given element infinitely.
Generates an observable sequence that repeats the given element infinitely, using the specified scheduler to send out observer messages.
The type of the element that will be repeated in the produced sequence.
Element to repeat.
Scheduler to run the producer loop on.
An observable sequence that repeats the given element infinitely.
is null.
Generates an observable sequence that repeats the given element the specified number of times.
The type of the element that will be repeated in the produced sequence.
Element to repeat.
Number of times to repeat the element.
An observable sequence that repeats the given element the specified number of times.
is less than zero.
Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages.
The type of the element that will be repeated in the produced sequence.
Element to repeat.
Number of times to repeat the element.
Scheduler to run the producer loop on.
An observable sequence that repeats the given element the specified number of times.
is less than zero.
is null.
Returns an observable sequence that contains a single element.
The type of the element that will be returned in the produced sequence.
Single element in the resulting observable sequence.
An observable sequence containing the single specified element.
Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages.
The type of the element that will be returned in the produced sequence.
Single element in the resulting observable sequence.
Scheduler to send the single element on.
An observable sequence containing the single specified element.
is null.
Returns an observable sequence that terminates with an exception.
The type used for the IObservable<T> type parameter of the resulting sequence.
Exception object used for the sequence's termination.
The observable sequence that terminates exceptionally with the specified exception object.
is null.
Returns an observable sequence that terminates with an exception.
The type used for the IObservable<T> type parameter of the resulting sequence.
Exception object used for the sequence's termination.
Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
The observable sequence that terminates exceptionally with the specified exception object.
is null.
Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message.
The type used for the IObservable<T> type parameter of the resulting sequence.
Exception object used for the sequence's termination.
Scheduler to send the exceptional termination call on.
The observable sequence that terminates exceptionally with the specified exception object.
or is null.
Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message.
The type used for the IObservable<T> type parameter of the resulting sequence.
Exception object used for the sequence's termination.
Scheduler to send the exceptional termination call on.
Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
The observable sequence that terminates exceptionally with the specified exception object.
or is null.
Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime.
The type of the elements in the produced sequence.
The type of the resource used during the generation of the resulting sequence. Needs to implement .
Factory function to obtain a resource object.
Factory function to obtain an observable sequence that depends on the obtained resource.
An observable sequence whose lifetime controls the lifetime of the dependent resource object.
or is null.
Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. The resource is obtained and used through asynchronous methods.
The CancellationToken passed to the asynchronous methods is tied to the returned disposable subscription, allowing best-effort cancellation at any stage of the resource acquisition or usage.
The type of the elements in the produced sequence.
The type of the resource used during the generation of the resulting sequence. Needs to implement .
Asynchronous factory function to obtain a resource object.
Asynchronous factory function to obtain an observable sequence that depends on the obtained resource.
An observable sequence whose lifetime controls the lifetime of the dependent resource object.
or is null.
This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous resource factory and observable factory functions will be signaled.
Creates a pattern that matches when both observable sequences have an available element.
The type of the elements in the left sequence.
The type of the elements in the right sequence.
Observable sequence to match with the right sequence.
Observable sequence to match with the left sequence.
Pattern object that matches when both observable sequences have an available element.
or is null.
Matches when the observable sequence has an available element and projects the element by invoking the selector function.
The type of the elements in the source sequence.
The type of the elements in the result sequence, returned by the selector function.
Observable sequence to apply the selector on.
Selector that will be invoked for elements in the source sequence.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
or is null.
Joins together the results from several patterns.
The type of the elements in the result sequence, obtained from the specified patterns.
A series of plans created by use of the Then operator on patterns.
An observable sequence with the results from matching several patterns.
is null.
Joins together the results from several patterns.
The type of the elements in the result sequence, obtained from the specified patterns.
A series of plans created by use of the Then operator on patterns.
An observable sequence with the results form matching several patterns.
is null.
Propagates the observable sequence that reacts first.
The type of the elements in the source sequences.
First observable sequence.
Second observable sequence.
An observable sequence that surfaces either of the given sequences, whichever reacted first.
or is null.
Propagates the observable sequence that reacts first.
The type of the elements in the source sequences.
Observable sources competing to react first.
An observable sequence that surfaces any of the given sequences, whichever reacted first.
is null.
Propagates the observable sequence that reacts first.
The type of the elements in the source sequences.
Observable sources competing to react first.
An observable sequence that surfaces any of the given sequences, whichever reacted first.
is null.
Projects each element of an observable sequence into consecutive non-overlapping buffers.
The type of the elements in the source sequence, and in the lists in the result sequence.
The type of the elements in the sequences indicating buffer closing events.
Source sequence to produce buffers over.
A function invoked to define the boundaries of the produced buffers. A new buffer is started when the previous one is closed.
An observable sequence of buffers.
or is null.
Projects each element of an observable sequence into zero or more buffers.
The type of the elements in the source sequence, and in the lists in the result sequence.
The type of the elements in the sequence indicating buffer opening events, also passed to the closing selector to obtain a sequence of buffer closing events.
The type of the elements in the sequences indicating buffer closing events.
Source sequence to produce buffers over.
Observable sequence whose elements denote the creation of new buffers.
A function invoked to define the closing of each produced buffer.
An observable sequence of buffers.
or or is null.
Projects each element of an observable sequence into consecutive non-overlapping buffers.
The type of the elements in the source sequence, and in the lists in the result sequence.
The type of the elements in the sequences indicating buffer boundary events.
Source sequence to produce buffers over.
Sequence of buffer boundary markers. The current buffer is closed and a new buffer is opened upon receiving a boundary marker.
An observable sequence of buffers.
or is null.
Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler.
The type of the elements in the source sequence and sequences returned by the exception handler function.
The type of the exception to catch and handle. Needs to derive from .
Source sequence.
Exception handler function, producing another observable sequence.
An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an exception occurred.
or is null.
Continues an observable sequence that is terminated by an exception with the next observable sequence.
The type of the elements in the source sequence and handler sequence.
First observable sequence whose exception (if any) is caught.
Second observable sequence used to produce results when an error occurred in the first sequence.
An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred.
or is null.
Continues an observable sequence that is terminated by an exception with the next observable sequence.
The type of the elements in the source and handler sequences.
Observable sequences to catch exceptions for.
An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.
is null.
Continues an observable sequence that is terminated by an exception with the next observable sequence.
The type of the elements in the source and handler sequences.
Observable sequences to catch exceptions for.
An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.
is null.
Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Function to invoke whenever either of the sources produces an element.
An observable sequence containing the result of combining elements of both sources using the specified result selector function.
or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Fourteenth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the fifteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Fourteenth observable source.
Fifteenth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the fifteenth source sequence.
The type of the elements in the sixteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Fourteenth observable source.
Fifteenth observable source.
Sixteenth observable source.
Function to invoke whenever any of the sources produces an element.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
The type of the elements in the source sequences.
The type of the elements in the result sequence, returned by the selector function.
Observable sources.
Function to invoke whenever any of the sources produces an element. For efficiency, the input list is reused after the selector returns. Either aggregate or copy the values during the function call.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or is null.
Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element.
The type of the elements in the source sequences, and in the lists in the result sequence.
Observable sources.
An observable sequence containing lists of the latest elements of the sources.
is null.
Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element.
The type of the elements in the source sequences, and in the lists in the result sequence.
Observable sources.
An observable sequence containing lists of the latest elements of the sources.
is null.
Concatenates the second observable sequence to the first observable sequence upon successful termination of the first.
The type of the elements in the source sequences.
First observable sequence.
Second observable sequence.
An observable sequence that contains the elements of the first sequence, followed by those of the second the sequence.
or is null.
Concatenates all of the specified observable sequences, as long as the previous observable sequence terminated successfully.
The type of the elements in the source sequences.
Observable sequences to concatenate.
An observable sequence that contains the elements of each given sequence, in sequential order.
is null.
Concatenates all observable sequences in the given enumerable sequence, as long as the previous observable sequence terminated successfully.
The type of the elements in the source sequences.
Observable sequences to concatenate.
An observable sequence that contains the elements of each given sequence, in sequential order.
is null.
Concatenates all inner observable sequences, as long as the previous observable sequence terminated successfully.
The type of the elements in the source sequences.
Observable sequence of inner observable sequences.
An observable sequence that contains the elements of each observed inner sequence, in sequential order.
is null.
Concatenates all task results, as long as the previous task terminated successfully.
The type of the results produced by the tasks.
Observable sequence of tasks.
An observable sequence that contains the results of each task, in sequential order.
is null.
If the tasks support cancellation, consider manual conversion of the tasks using , followed by a concatenation operation using .
Merges elements from all inner observable sequences into a single observable sequence.
The type of the elements in the source sequences.
Observable sequence of inner observable sequences.
The observable sequence that merges the elements of the inner sequences.
is null.
Merges results from all source tasks into a single observable sequence.
The type of the results produced by the source tasks.
Observable sequence of tasks.
The observable sequence that merges the results of the source tasks.
is null.
If the tasks support cancellation, consider manual conversion of the tasks using , followed by a merge operation using .
Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences.
The type of the elements in the source sequences.
Observable sequence of inner observable sequences.
Maximum number of inner observable sequences being subscribed to concurrently.
The observable sequence that merges the elements of the inner sequences.
is null.
is less than or equal to zero.
Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences.
The type of the elements in the source sequences.
Enumerable sequence of observable sequences.
Maximum number of observable sequences being subscribed to concurrently.
The observable sequence that merges the elements of the observable sequences.
is null.
is less than or equal to zero.
Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences, and using the specified scheduler for enumeration of and subscription to the sources.
The type of the elements in the source sequences.
Enumerable sequence of observable sequences.
Maximum number of observable sequences being subscribed to concurrently.
Scheduler to run the enumeration of the sequence of sources on.
The observable sequence that merges the elements of the observable sequences.
or is null.
is less than or equal to zero.
Merges elements from two observable sequences into a single observable sequence.
The type of the elements in the source sequences.
First observable sequence.
Second observable sequence.
The observable sequence that merges the elements of the given sequences.
or is null.
Merges elements from two observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
The type of the elements in the source sequences.
First observable sequence.
Second observable sequence.
Scheduler used to introduce concurrency for making subscriptions to the given sequences.
The observable sequence that merges the elements of the given sequences.
or or is null.
Merges elements from all of the specified observable sequences into a single observable sequence.
The type of the elements in the source sequences.
Observable sequences.
The observable sequence that merges the elements of the observable sequences.
is null.
Merges elements from all of the specified observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
The type of the elements in the source sequences.
Observable sequences.
Scheduler to run the enumeration of the sequence of sources on.
The observable sequence that merges the elements of the observable sequences.
or is null.
Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence.
The type of the elements in the source sequences.
Enumerable sequence of observable sequences.
The observable sequence that merges the elements of the observable sequences.
is null.
Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
The type of the elements in the source sequences.
Enumerable sequence of observable sequences.
Scheduler to run the enumeration of the sequence of sources on.
The observable sequence that merges the elements of the observable sequences.
or is null.
Concatenates the second observable sequence to the first observable sequence upon successful or exceptional termination of the first.
The type of the elements in the source sequences.
First observable sequence whose exception (if any) is caught.
Second observable sequence used to produce results after the first sequence terminates.
An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally.
or is null.
Concatenates all of the specified observable sequences, even if the previous observable sequence terminated exceptionally.
The type of the elements in the source sequences.
Observable sequences to concatenate.
An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
is null.
Concatenates all observable sequences in the given enumerable sequence, even if the previous observable sequence terminated exceptionally.
The type of the elements in the source sequences.
Observable sequences to concatenate.
An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
is null.
Returns the elements from the source observable sequence only after the other observable sequence produces an element.
The type of the elements in the source sequence.
The type of the elements in the other sequence that indicates the end of skip behavior.
Source sequence to propagate elements for.
Observable sequence that triggers propagation of elements of the source sequence.
An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.
or is null.
Switches between the inner observable sequences such that the resulting sequence always produces elements from the most recently received inner observable sequence.
Each time a new inner observable sequence is received, the previous inner observable sequence is unsubscribed from.
The type of the elements in the source sequences.
Observable sequence of inner observable sequences.
The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received.
is null.
Switches between the tasks such that the resulting sequence always produces results from the most recently received task.
Each time a new task is received, the previous task's result is ignored.
The type of the results produced by the source tasks.
Observable sequence of tasks.
The observable sequence that at any point in time produces the result of the most recent task that has been received.
is null.
If the tasks support cancellation, consider manual conversion of the tasks using , followed by a switch operation using .
Returns the elements from the source observable sequence until the other observable sequence produces an element.
The type of the elements in the source sequence.
The type of the elements in the other sequence that indicates the end of take behavior.
Source sequence to propagate elements for.
Observable sequence that terminates propagation of elements of the source sequence.
An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation.
or is null.
Projects each element of an observable sequence into consecutive non-overlapping windows.
The type of the elements in the source sequence, and in the windows in the result sequence.
The type of the elements in the sequences indicating window closing events.
Source sequence to produce windows over.
A function invoked to define the boundaries of the produced windows. A new window is started when the previous one is closed.
An observable sequence of windows.
or is null.
Projects each element of an observable sequence into zero or more windows.
The type of the elements in the source sequence, and in the windows in the result sequence.
The type of the elements in the sequence indicating window opening events, also passed to the closing selector to obtain a sequence of window closing events.
The type of the elements in the sequences indicating window closing events.
Source sequence to produce windows over.
Observable sequence whose elements denote the creation of new windows.
A function invoked to define the closing of each produced window.
An observable sequence of windows.
or or is null.
Projects each element of an observable sequence into consecutive non-overlapping windows.
The type of the elements in the source sequence, and in the windows in the result sequence.
The type of the elements in the sequences indicating window boundary events.
Source sequence to produce windows over.
Sequence of window boundary markers. The current window is closed and a new window is opened upon receiving a boundary marker.
An observable sequence of windows.
or is null.
Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Function to invoke for each consecutive pair of elements from the first and second source.
An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.
or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Fourteenth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the fifteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Fourteenth observable source.
Fifteenth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the fifteenth source sequence.
The type of the elements in the sixteenth source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second observable source.
Third observable source.
Fourth observable source.
Fifth observable source.
Sixth observable source.
Seventh observable source.
Eighth observable source.
Ninth observable source.
Tenth observable source.
Eleventh observable source.
Twelfth observable source.
Thirteenth observable source.
Fourteenth observable source.
Fifteenth observable source.
Sixteenth observable source.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or or or or or or or or or or or or or or or or is null.
Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
The type of the elements in the source sequences.
The type of the elements in the result sequence, returned by the selector function.
Observable sources.
Function to invoke for each series of elements at corresponding indexes in the sources.
An observable sequence containing the result of combining elements of the sources using the specified result selector function.
or is null.
Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes.
The type of the elements in the source sequences, and in the lists in the result sequence.
Observable sources.
An observable sequence containing lists of elements at corresponding indexes.
is null.
Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes.
The type of the elements in the source sequences, and in the lists in the result sequence.
Observable sources.
An observable sequence containing lists of elements at corresponding indexes.
is null.
Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function.
The type of the elements in the first observable source sequence.
The type of the elements in the second enumerable source sequence.
The type of the elements in the result sequence, returned by the selector function.
First observable source.
Second enumerable source.
Function to invoke for each consecutive pair of elements from the first and second source.
An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.
or or is null.
Hides the identity of an observable sequence.
The type of the elements in the source sequence.
An observable sequence whose identity to hide.
An observable sequence that hides the identity of the source sequence.
is null.
Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Length of each buffer.
An observable sequence of buffers.
is null.
is less than or equal to zero.
Projects each element of an observable sequence into zero or more buffers which are produced based on element count information.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Length of each buffer.
Number of elements to skip between creation of consecutive buffers.
An observable sequence of buffers.
is null.
or is less than or equal to zero.
Dematerializes the explicit notification values of an observable sequence as implicit notifications.
The type of the elements materialized in the source sequence notification objects.
An observable sequence containing explicit notification values which have to be turned into implicit notifications.
An observable sequence exhibiting the behavior corresponding to the source sequence's notification values.
is null.
Returns an observable sequence that contains only distinct contiguous elements.
The type of the elements in the source sequence.
An observable sequence to retain distinct contiguous elements for.
An observable sequence only containing the distinct contiguous elements from the source sequence.
is null.
Returns an observable sequence that contains only distinct contiguous elements according to the comparer.
The type of the elements in the source sequence.
An observable sequence to retain distinct contiguous elements for.
Equality comparer for source elements.
An observable sequence only containing the distinct contiguous elements from the source sequence.
or is null.
Returns an observable sequence that contains only distinct contiguous elements according to the keySelector.
The type of the elements in the source sequence.
The type of the discriminator key computed for each element in the source sequence.
An observable sequence to retain distinct contiguous elements for, based on a computed key value.
A function to compute the comparison key for each element.
An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.
or is null.
Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer.
The type of the elements in the source sequence.
The type of the discriminator key computed for each element in the source sequence.
An observable sequence to retain distinct contiguous elements for, based on a computed key value.
A function to compute the comparison key for each element.
Equality comparer for computed key values.
An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.
or or is null.
Invokes an action for each element in the observable sequence, and propagates all observer messages through the result sequence.
This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
The source sequence with the side-effecting behavior applied.
or is null.
Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence.
This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Action to invoke upon graceful termination of the observable sequence.
The source sequence with the side-effecting behavior applied.
or or is null.
Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence.
This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Action to invoke upon exceptional termination of the observable sequence.
The source sequence with the side-effecting behavior applied.
or or is null.
Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence.
This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
The type of the elements in the source sequence.
Source sequence.
Action to invoke for each element in the observable sequence.
Action to invoke upon exceptional termination of the observable sequence.
Action to invoke upon graceful termination of the observable sequence.
The source sequence with the side-effecting behavior applied.
or or or is null.
Invokes the observer's methods for each message in the source sequence.
This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
The type of the elements in the source sequence.
Source sequence.
Observer whose methods to invoke as part of the source sequence's observation.
The source sequence with the side-effecting behavior applied.
or is null.
Invokes a specified action after the source observable sequence terminates gracefully or exceptionally.
The type of the elements in the source sequence.
Source sequence.
Action to invoke after the source observable sequence terminates.
Source sequence with the action-invoking termination behavior applied.
or is null.
Ignores all elements in an observable sequence leaving only the termination messages.
The type of the elements in the source sequence.
Source sequence.
An empty observable sequence that signals termination, successful or exceptional, of the source sequence.
is null.
Materializes the implicit notifications of an observable sequence as explicit notification values.
The type of the elements in the source sequence.
An observable sequence to get notification values for.
An observable sequence containing the materialized notification values from the source sequence.
is null.
Repeats the observable sequence indefinitely.
The type of the elements in the source sequence.
Observable sequence to repeat.
The observable sequence producing the elements of the given sequence repeatedly and sequentially.
is null.
Repeats the observable sequence a specified number of times.
The type of the elements in the source sequence.
Observable sequence to repeat.
Number of times to repeat the sequence.
The observable sequence producing the elements of the given sequence repeatedly.
is null.
is less than zero.
Repeats the source observable sequence until it successfully terminates.
The type of the elements in the source sequence.
Observable sequence to repeat until it successfully terminates.
An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
is null.
Repeats the source observable sequence the specified number of times or until it successfully terminates.
The type of the elements in the source sequence.
Observable sequence to repeat until it successfully terminates.
Number of times to repeat the sequence.
An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
is null.
is less than zero.
Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value.
For aggregation behavior with no intermediate results, see .
The type of the elements in the source sequence.
The type of the result of the aggregation.
An observable sequence to accumulate over.
The initial accumulator value.
An accumulator function to be invoked on each element.
An observable sequence containing the accumulated values.
or is null.
Applies an accumulator function over an observable sequence and returns each intermediate result.
For aggregation behavior with no intermediate results, see .
The type of the elements in the source sequence and the result of the aggregation.
An observable sequence to accumulate over.
An accumulator function to be invoked on each element.
An observable sequence containing the accumulated values.
or is null.
Bypasses a specified number of elements at the end of an observable sequence.
The type of the elements in the source sequence.
Source sequence.
Number of elements to bypass at the end of the source sequence.
An observable sequence containing the source sequence elements except for the bypassed ones at the end.
is null.
is less than zero.
This operator accumulates a queue with a length enough to store the first elements. As more elements are
received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed.
Prepends a sequence of values to an observable sequence.
The type of the elements in the source sequence.
Source sequence to prepend values to.
Values to prepend to the specified sequence.
The source sequence prepended with the specified values.
or is null.
Prepends a sequence of values to an observable sequence.
The type of the elements in the source sequence.
Source sequence to prepend values to.
Values to prepend to the specified sequence.
The source sequence prepended with the specified values.
or is null.
Prepends a sequence of values to an observable sequence.
The type of the elements in the source sequence.
Source sequence to prepend values to.
Scheduler to emit the prepended values on.
Values to prepend to the specified sequence.
The source sequence prepended with the specified values.
or or is null.
Prepends a sequence of values to an observable sequence.
The type of the elements in the source sequence.
Source sequence to prepend values to.
Scheduler to emit the prepended values on.
Values to prepend to the specified sequence.
The source sequence prepended with the specified values.
or or is null.
Returns a specified number of contiguous elements from the end of an observable sequence.
The type of the elements in the source sequence.
Source sequence.
Number of elements to take from the end of the source sequence.
An observable sequence containing the specified number of elements from the end of the source sequence.
is null.
is less than zero.
This operator accumulates a buffer with a length enough to store elements elements. Upon completion of
the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed.
Returns a specified number of contiguous elements from the end of an observable sequence, using the specified scheduler to drain the queue.
The type of the elements in the source sequence.
Source sequence.
Number of elements to take from the end of the source sequence.
Scheduler used to drain the queue upon completion of the source sequence.
An observable sequence containing the specified number of elements from the end of the source sequence.
or is null.
is less than zero.
This operator accumulates a buffer with a length enough to store elements elements. Upon completion of
the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed.
Returns a list with the specified number of contiguous elements from the end of an observable sequence.
The type of the elements in the source sequence.
Source sequence.
Number of elements to take from the end of the source sequence.
An observable sequence containing a single list with the specified number of elements from the end of the source sequence.
is null.
is less than zero.
This operator accumulates a buffer with a length enough to store elements. Upon completion of the
source sequence, this buffer is produced on the result sequence.
Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Length of each window.
An observable sequence of windows.
is null.
is less than or equal to zero.
Projects each element of an observable sequence into zero or more windows which are produced based on element count information.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Length of each window.
Number of elements to skip between creation of consecutive windows.
An observable sequence of windows.
is null.
or is less than or equal to zero.
Converts the elements of an observable sequence to the specified type.
The type to convert the elements in the source sequence to.
The observable sequence that contains the elements to be converted.
An observable sequence that contains each element of the source sequence converted to the specified type.
is null.
Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.
The type of the elements in the source sequence (if any), whose default value will be taken if the sequence is empty.
The sequence to return a default value for if it is empty.
An observable sequence that contains the default value for the TSource type if the source is empty; otherwise, the elements of the source itself.
is null.
Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty.
The type of the elements in the source sequence (if any), and the specified default value which will be taken if the sequence is empty.
The sequence to return the specified value for if it is empty.
The value to return if the sequence is empty.
An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself.
is null.
Returns an observable sequence that contains only distinct elements.
The type of the elements in the source sequence.
An observable sequence to retain distinct elements for.
An observable sequence only containing the distinct elements from the source sequence.
is null.
Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
Returns an observable sequence that contains only distinct elements according to the comparer.
The type of the elements in the source sequence.
An observable sequence to retain distinct elements for.
Equality comparer for source elements.
An observable sequence only containing the distinct elements from the source sequence.
or is null.
Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
Returns an observable sequence that contains only distinct elements according to the keySelector.
The type of the elements in the source sequence.
The type of the discriminator key computed for each element in the source sequence.
An observable sequence to retain distinct elements for.
A function to compute the comparison key for each element.
An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.
or is null.
Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer.
The type of the elements in the source sequence.
The type of the discriminator key computed for each element in the source sequence.
An observable sequence to retain distinct elements for.
A function to compute the comparison key for each element.
Equality comparer for source elements.
An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.
or or is null.
Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
Groups the elements of an observable sequence according to a specified key selector function.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
An observable sequence whose elements to group.
A function to extract the key for each element.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
or is null.
Groups the elements of an observable sequence according to a specified key selector function and comparer.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
An observable sequence whose elements to group.
A function to extract the key for each element.
An equality comparer to compare keys with.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
or or is null.
Groups the elements of an observable sequence and selects the resulting elements by using a specified function.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements within the groups computed for each element in the source sequence.
An observable sequence whose elements to group.
A function to extract the key for each element.
A function to map each source element to an element in an observable group.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
or or is null.
Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements within the groups computed for each element in the source sequence.
An observable sequence whose elements to group.
A function to extract the key for each element.
A function to map each source element to an element in an observable group.
An equality comparer to compare keys with.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
or or or is null.
Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements within the groups computed for each element in the source sequence.
The type of the elements in the duration sequences obtained for each group to denote its lifetime.
An observable sequence whose elements to group.
A function to extract the key for each element.
A function to map each source element to an element in an observable group.
A function to signal the expiration of a group.
An equality comparer to compare keys with.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
or or or or is null.
Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function.
A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements within the groups computed for each element in the source sequence.
The type of the elements in the duration sequences obtained for each group to denote its lifetime.
An observable sequence whose elements to group.
A function to extract the key for each element.
A function to map each source element to an element in an observable group.
A function to signal the expiration of a group.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered.
or or or is null.
Groups the elements of an observable sequence according to a specified key selector function and comparer.
A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements in the duration sequences obtained for each group to denote its lifetime.
An observable sequence whose elements to group.
A function to extract the key for each element.
A function to signal the expiration of a group.
An equality comparer to compare keys with.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered.
or or or is null.
Groups the elements of an observable sequence according to a specified key selector function.
A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements in the duration sequences obtained for each group to denote its lifetime.
An observable sequence whose elements to group.
A function to extract the key for each element.
A function to signal the expiration of a group.
A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered.
or or is null.
Correlates the elements of two sequences based on overlapping durations, and groups the results.
The type of the elements in the left source sequence.
The type of the elements in the right source sequence.
The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence.
The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence.
The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration.
The left observable sequence to join elements for.
The right observable sequence to join elements for.
A function to select the duration of each element of the left observable sequence, used to determine overlap.
A function to select the duration of each element of the right observable sequence, used to determine overlap.
A function invoked to compute a result element for any element of the left sequence with overlapping elements from the right observable sequence.
An observable sequence that contains result elements computed from source elements that have an overlapping duration.
or or or or is null.
Correlates the elements of two sequences based on overlapping durations.
The type of the elements in the left source sequence.
The type of the elements in the right source sequence.
The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence.
The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence.
The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration.
The left observable sequence to join elements for.
The right observable sequence to join elements for.
A function to select the duration of each element of the left observable sequence, used to determine overlap.
A function to select the duration of each element of the right observable sequence, used to determine overlap.
A function invoked to compute a result element for any two overlapping elements of the left and right observable sequences.
An observable sequence that contains result elements computed from source elements that have an overlapping duration.
or or or or is null.
Filters the elements of an observable sequence based on the specified type.
The type to filter the elements in the source sequence on.
The observable sequence that contains the elements to be filtered.
An observable sequence that contains elements from the input sequence of type TResult.
is null.
Projects each element of an observable sequence into a new form.
The type of the elements in the source sequence.
The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.
A sequence of elements to invoke a transform function on.
A transform function to apply to each source element.
An observable sequence whose elements are the result of invoking the transform function on each element of source.
or is null.
Projects each element of an observable sequence into a new form by incorporating the element's index.
The type of the elements in the source sequence.
The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.
A sequence of elements to invoke a transform function on.
A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
An observable sequence whose elements are the result of invoking the transform function on each element of source.
or is null.
Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the other sequence and the elements in the result sequence.
An observable sequence of elements to project.
An observable sequence to project each element from the source sequence onto.
An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together.
or is null.
Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected inner sequences and the elements in the merged result sequence.
An observable sequence of elements to project.
A transform function to apply to each element.
An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
or is null.
Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected inner sequences and the elements in the merged result sequence.
An observable sequence of elements to project.
A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
or is null.
Projects each element of an observable sequence to a task and merges all of the task results into one observable sequence.
The type of the elements in the source sequence.
The type of the result produced by the projected tasks and the elements in the merged result sequence.
An observable sequence of elements to project.
A transform function to apply to each element.
An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
or is null.
Projects each element of an observable sequence to a task with cancellation support and merges all of the task results into one observable sequence.
The type of the elements in the source sequence.
The type of the result produced by the projected tasks and the elements in the merged result sequence.
An observable sequence of elements to project.
A transform function to apply to each element.
An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
or is null.
Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected intermediate sequences.
The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
An observable sequence of elements to project.
A transform function to apply to each element.
A transform function to apply to each element of the intermediate sequence.
An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
or or is null.
Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected intermediate sequences.
The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
An observable sequence of elements to project.
A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
A transform function to apply to each element of the intermediate sequence.
An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
or or is null.
Projects each element of an observable sequence to a task, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
The type of the elements in the source sequence.
The type of the results produced by the projected intermediate tasks.
The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
An observable sequence of elements to project.
A transform function to apply to each element.
A transform function to apply to each element of the intermediate sequence.
An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
or or is null.
This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
Projects each element of an observable sequence to a task with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
The type of the elements in the source sequence.
The type of the results produced by the projected intermediate tasks.
The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
An observable sequence of elements to project.
A transform function to apply to each element.
A transform function to apply to each element of the intermediate sequence.
An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
or or is null.
This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
Projects each notification of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected inner sequences and the elements in the merged result sequence.
An observable sequence of notifications to project.
A transform function to apply to each element.
A transform function to apply when an error occurs in the source sequence.
A transform function to apply when the end of the source sequence is reached.
An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.
or or or is null.
Projects each notification of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected inner sequences and the elements in the merged result sequence.
An observable sequence of notifications to project.
A transform function to apply to each element; the second parameter represents the index of the source element.
A transform function to apply when an error occurs in the source sequence; the second parameter represents the index of the source element.
A transform function to apply when the end of the source sequence is reached; the second parameter represents the number of elements observed.
An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.
or or or is null.
Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.
An observable sequence of elements to project.
A transform function to apply to each element.
An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
or is null.
The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence.
The index of each source element is used in the projected form of that element.
The type of the elements in the source sequence.
The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.
An observable sequence of elements to project.
A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
or is null.
The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
Projects each element of an observable sequence to an enumerable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected intermediate enumerable sequences.
The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
An observable sequence of elements to project.
A transform function to apply to each element.
A transform function to apply to each element of the intermediate sequence.
An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
or or is null.
The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
Projects each element of an observable sequence to an enumerable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
The type of the elements in the source sequence.
The type of the elements in the projected intermediate enumerable sequences.
The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
An observable sequence of elements to project.
A transform function to apply to each element; the second parameter of the function represents the index of the source element.
A transform function to apply to each element of the intermediate sequence.
An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
or or is null.
The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
Bypasses a specified number of elements in an observable sequence and then returns the remaining elements.
The type of the elements in the source sequence.
The sequence to take elements from.
The number of elements to skip before returning the remaining elements.
An observable sequence that contains the elements that occur after the specified index in the input sequence.
is null.
is less than zero.
Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements.
The type of the elements in the source sequence.
An observable sequence to return elements from.
A function to test each element for a condition.
An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.
or is null.
Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements.
The element's index is used in the logic of the predicate function.
The type of the elements in the source sequence.
An observable sequence to return elements from.
A function to test each element for a condition; the second parameter of the function represents the index of the source element.
An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.
or is null.
Returns a specified number of contiguous elements from the start of an observable sequence.
The type of the elements in the source sequence.
The sequence to take elements from.
The number of elements to return.
An observable sequence that contains the specified number of elements from the start of the input sequence.
is null.
is less than zero.
Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of Take(0).
The type of the elements in the source sequence.
The sequence to take elements from.
The number of elements to return.
Scheduler used to produce an OnCompleted message in case count is set to 0.
An observable sequence that contains the specified number of elements from the start of the input sequence.
or is null.
is less than zero.
Returns elements from an observable sequence as long as a specified condition is true.
The type of the elements in the source sequence.
A sequence to return elements from.
A function to test each element for a condition.
An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
or is null.
Returns elements from an observable sequence as long as a specified condition is true.
The element's index is used in the logic of the predicate function.
The type of the elements in the source sequence.
A sequence to return elements from.
A function to test each element for a condition; the second parameter of the function represents the index of the source element.
An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
or is null.
Filters the elements of an observable sequence based on a predicate.
The type of the elements in the source sequence.
An observable sequence whose elements to filter.
A function to test each source element for a condition.
An observable sequence that contains elements from the input sequence that satisfy the condition.
or is null.
Filters the elements of an observable sequence based on a predicate by incorporating the element's index.
The type of the elements in the source sequence.
An observable sequence whose elements to filter.
A function to test each source element for a conditio; the second parameter of the function represents the index of the source element.
An observable sequence that contains elements from the input sequence that satisfy the condition.
or is null.
Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Length of each buffer.
An observable sequence of buffers.
is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information, using the specified scheduler to run timers.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Length of each buffer.
Scheduler to run buffering timers on.
An observable sequence of buffers.
or is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into zero or more buffers which are produced based on timing information.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Length of each buffer.
Interval between creation of consecutive buffers.
An observable sequence of buffers.
is null.
or is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration
length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
current buffer may not execute immediately, despite the TimeSpan.Zero due time.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into zero or more buffers which are produced based on timing information, using the specified scheduler to run timers.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Length of each buffer.
Interval between creation of consecutive buffers.
Scheduler to run buffering timers on.
An observable sequence of buffers.
or is null.
or is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration
length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
current buffer may not execute immediately, despite the TimeSpan.Zero due time.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed.
A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Maximum time length of a window.
Maximum element count of a window.
An observable sequence of buffers.
is null.
is less than TimeSpan.Zero. -or- is less than or equal to zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers.
A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
The type of the elements in the source sequence, and in the lists in the result sequence.
Source sequence to produce buffers over.
Maximum time length of a buffer.
Maximum element count of a buffer.
Scheduler to run buffering timers on.
An observable sequence of buffers.
or is null.
is less than TimeSpan.Zero. -or- is less than or equal to zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
Time shifts the observable sequence by the specified relative time duration.
The relative time intervals between the values are preserved.
The type of the elements in the source sequence.
Source sequence to delay values for.
Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible.
Time-shifted sequence.
is null.
is less than TimeSpan.Zero.
This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn.
Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
Time shifts the observable sequence by the specified relative time duration, using the specified scheduler to run timers.
The relative time intervals between the values are preserved.
The type of the elements in the source sequence.
Source sequence to delay values for.
Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible.
Scheduler to run the delay timers on.
Time-shifted sequence.
or is null.
is less than TimeSpan.Zero.
This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn.
Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
Time shifts the observable sequence to start propagating notifications at the specified absolute time.
The relative time intervals between the values are preserved.
The type of the elements in the source sequence.
Source sequence to delay values for.
Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible.
Time-shifted sequence.
is null.
This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn.
Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
Time shifts the observable sequence to start propagating notifications at the specified absolute time, using the specified scheduler to run timers.
The relative time intervals between the values are preserved.
The type of the elements in the source sequence.
Source sequence to delay values for.
Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible.
Scheduler to run the delay timers on.
Time-shifted sequence.
or is null.
This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn.
Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
Time shifts the observable sequence based on a delay selector function for each element.
The type of the elements in the source sequence.
The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence.
Source sequence to delay values for.
Selector function to retrieve a sequence indicating the delay for each given element.
Time-shifted sequence.
or is null.
Time shifts the observable sequence based on a subscription delay and a delay selector function for each element.
The type of the elements in the source sequence.
The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence.
Source sequence to delay values for.
Sequence indicating the delay for the subscription to the source.
Selector function to retrieve a sequence indicating the delay for each given element.
Time-shifted sequence.
or or is null.
Time shifts the observable sequence by delaying the subscription with the specified relative time duration.
The type of the elements in the source sequence.
Source sequence to delay subscription for.
Relative time shift of the subscription.
Time-shifted sequence.
is null.
is less than TimeSpan.Zero.
This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected.
Time shifts the observable sequence by delaying the subscription with the specified relative time duration, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to delay subscription for.
Relative time shift of the subscription.
Scheduler to run the subscription delay timer on.
Time-shifted sequence.
or is null.
is less than TimeSpan.Zero.
This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected.
Time shifts the observable sequence by delaying the subscription to the specified absolute time.
The type of the elements in the source sequence.
Source sequence to delay subscription for.
Absolute time to perform the subscription at.
Time-shifted sequence.
is null.
This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected.
Time shifts the observable sequence by delaying the subscription to the specified absolute time, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to delay subscription for.
Absolute time to perform the subscription at.
Scheduler to run the subscription delay timer on.
Time-shifted sequence.
or is null.
This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected.
Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements.
The type of the state used in the generator loop.
The type of the elements in the produced sequence.
Initial state.
Condition to terminate generation (upon returning false).
Iteration step function.
Selector function for results produced in the sequence.
Time selector function to control the speed of values being produced each iteration.
The generated sequence.
or or or is null.
Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages.
The type of the state used in the generator loop.
The type of the elements in the produced sequence.
Initial state.
Condition to terminate generation (upon returning false).
Iteration step function.
Selector function for results produced in the sequence.
Time selector function to control the speed of values being produced each iteration.
Scheduler on which to run the generator loop.
The generated sequence.
or or or or is null.
Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements.
The type of the state used in the generator loop.
The type of the elements in the produced sequence.
Initial state.
Condition to terminate generation (upon returning false).
Iteration step function.
Selector function for results produced in the sequence.
Time selector function to control the speed of values being produced each iteration.
The generated sequence.
or or or is null.
Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages.
The type of the state used in the generator loop.
The type of the elements in the produced sequence.
Initial state.
Condition to terminate generation (upon returning false).
Iteration step function.
Selector function for results produced in the sequence.
Time selector function to control the speed of values being produced each iteration.
Scheduler on which to run the generator loop.
The generated sequence.
or or or or is null.
Returns an observable sequence that produces a value after each period.
Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
An observable sequence that produces a value after each period.
is less than TimeSpan.Zero.
Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification.
If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the
current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the
operator instead.
Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages.
Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
Scheduler to run the timer on.
An observable sequence that produces a value after each period.
is less than TimeSpan.Zero.
is null.
Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification.
If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the
current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the
operator instead.
Samples the observable sequence at each interval.
Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
The type of the elements in the source sequence.
Source sequence to sample.
Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream.
Sampled observable sequence.
is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect
of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time.
Samples the observable sequence at each interval, using the specified scheduler to run sampling timers.
Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
The type of the elements in the source sequence.
Source sequence to sample.
Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream.
Scheduler to run the sampling timer on.
Sampled observable sequence.
or is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect
of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time.
Samples the source observable sequence using a samper observable sequence producing sampling ticks.
Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
The type of the elements in the source sequence.
The type of the elements in the sampling sequence.
Source sequence to sample.
Sampling tick sequence.
Sampled observable sequence.
or is null.
Skips elements for the specified duration from the start of the observable source sequence.
The type of the elements in the source sequence.
Source sequence to skip elements for.
Duration for skipping elements from the start of the sequence.
An observable sequence with the elements skipped during the specified duration from the start of the source sequence.
is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence.
This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded
may not execute immediately, despite the TimeSpan.Zero due time.
Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
Skips elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to skip elements for.
Duration for skipping elements from the start of the sequence.
Scheduler to run the timer on.
An observable sequence with the elements skipped during the specified duration from the start of the source sequence.
or is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence.
This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded
may not execute immediately, despite the TimeSpan.Zero due time.
Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
Skips elements for the specified duration from the end of the observable source sequence.
The type of the elements in the source sequence.
Source sequence to skip elements for.
Duration for skipping elements from the end of the sequence.
An observable sequence with the elements skipped during the specified duration from the end of the source sequence.
is null.
is less than TimeSpan.Zero.
This operator accumulates a queue with a length enough to store elements received during the initial window.
As more elements are received, elements older than the specified are taken from the queue and produced on the
result sequence. This causes elements to be delayed with .
Skips elements for the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to skip elements for.
Duration for skipping elements from the end of the sequence.
Scheduler to run the timer on.
An observable sequence with the elements skipped during the specified duration from the end of the source sequence.
or is null.
is less than TimeSpan.Zero.
This operator accumulates a queue with a length enough to store elements received during the initial window.
As more elements are received, elements older than the specified are taken from the queue and produced on the
result sequence. This causes elements to be delayed with .
Skips elements from the observable source sequence until the specified start time.
The type of the elements in the source sequence.
Source sequence to skip elements for.
Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped.
An observable sequence with the elements skipped until the specified start time.
is null.
Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
Skips elements from the observable source sequence until the specified start time, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to skip elements for.
Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped.
Scheduler to run the timer on.
An observable sequence with the elements skipped until the specified start time.
or is null.
Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
Takes elements for the specified duration from the start of the observable source sequence.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the start of the sequence.
An observable sequence with the elements taken during the specified duration from the start of the source sequence.
is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect
of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute
immediately, despite the TimeSpan.Zero due time.
Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the start of the sequence.
Scheduler to run the timer on.
An observable sequence with the elements taken during the specified duration from the start of the source sequence.
or is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect
of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute
immediately, despite the TimeSpan.Zero due time.
Returns elements within the specified duration from the end of the observable source sequence.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the end of the sequence.
An observable sequence with the elements taken during the specified duration from the end of the source sequence.
is null.
is less than TimeSpan.Zero.
This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
to be delayed with .
Returns elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the end of the sequence.
Scheduler to run the timer on.
An observable sequence with the elements taken during the specified duration from the end of the source sequence.
or is null.
is less than TimeSpan.Zero.
This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
to be delayed with .
Returns elements within the specified duration from the end of the observable source sequence, using the specified schedulers to run timers and to drain the collected elements.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the end of the sequence.
Scheduler to run the timer on.
Scheduler to drain the collected elements.
An observable sequence with the elements taken during the specified duration from the end of the source sequence.
or or is null.
is less than TimeSpan.Zero.
This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
to be delayed with .
Returns a list with the elements within the specified duration from the end of the observable source sequence.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the end of the sequence.
An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence.
is null.
is less than TimeSpan.Zero.
This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence.
Returns a list with the elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to take elements from.
Duration for taking elements from the end of the sequence.
Scheduler to run the timer on.
An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence.
or is null.
is less than TimeSpan.Zero.
This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence.
Takes elements for the specified duration until the specified end time.
The type of the elements in the source sequence.
Source sequence to take elements from.
Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately.
An observable sequence with the elements taken until the specified end time.
is null.
Takes elements for the specified duration until the specified end time, using the specified scheduler to run timers.
The type of the elements in the source sequence.
Source sequence to take elements from.
Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately.
Scheduler to run the timer on.
An observable sequence with the elements taken until the specified end time.
or is null.
Ignores elements from an observable sequence which are followed by another element within a specified relative time duration.
The type of the elements in the source sequence.
Source sequence to throttle.
Throttling duration for each element.
The throttled sequence.
is null.
is less than TimeSpan.Zero.
This operator throttles the source sequence by holding on to each element for the duration specified in . If another
element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole
process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't
produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the
Observable.Sample set of operators.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled
that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the
asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero
due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action.
Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers.
The type of the elements in the source sequence.
Source sequence to throttle.
Throttling duration for each element.
Scheduler to run the throttle timers on.
The throttled sequence.
or is null.
is less than TimeSpan.Zero.
This operator throttles the source sequence by holding on to each element for the duration specified in . If another
element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole
process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't
produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the
Observable.Sample set of operators.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled
that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the
asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero
due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action.
Ignores elements from an observable sequence which are followed by another value within a computed throttle duration.
The type of the elements in the source sequence.
The type of the elements in the throttle sequences selected for each element in the source sequence.
Source sequence to throttle.
Selector function to retrieve a sequence indicating the throttle duration for each given element.
The throttled sequence.
or is null.
This operator throttles the source sequence by holding on to each element for the duration denoted by .
If another element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this
whole process. For streams where the duration computed by applying the to each element overlaps with
the occurrence of the successor element, the resulting stream won't produce any elements. In order to reduce the volume of a stream whilst
guaranteeing the periodic production of elements, consider using the Observable.Sample set of operators.
Records the time interval between consecutive elements in an observable sequence.
The type of the elements in the source sequence.
Source sequence to record time intervals for.
An observable sequence with time interval information on elements.
is null.
Records the time interval between consecutive elements in an observable sequence, using the specified scheduler to compute time intervals.
The type of the elements in the source sequence.
Source sequence to record time intervals for.
Scheduler used to compute time intervals.
An observable sequence with time interval information on elements.
or is null.
Applies a timeout policy for each element in the observable sequence.
If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer.
The type of the elements in the source sequence.
Source sequence to perform a timeout for.
Maximum duration between values before a timeout occurs.
The source sequence with a TimeoutException in case of a timeout.
is null.
is less than TimeSpan.Zero.
(Asynchronous) If no element is produced within from the previous element.
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
arrive before the scheduler gets a chance to run the timeout action.
Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers.
If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer.
The type of the elements in the source sequence.
Source sequence to perform a timeout for.
Maximum duration between values before a timeout occurs.
Scheduler to run the timeout timers on.
The source sequence with a TimeoutException in case of a timeout.
or is null.
is less than TimeSpan.Zero.
(Asynchronous) If no element is produced within from the previous element.
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
arrive before the scheduler gets a chance to run the timeout action.
Applies a timeout policy for each element in the observable sequence.
If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
The type of the elements in the source sequence and the other sequence used upon a timeout.
Source sequence to perform a timeout for.
Maximum duration between values before a timeout occurs.
Sequence to return in case of a timeout.
The source sequence switching to the other sequence in case of a timeout.
or is null.
is less than TimeSpan.Zero.
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
arrive before the scheduler gets a chance to run the timeout action.
Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers.
If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
The type of the elements in the source sequence and the other sequence used upon a timeout.
Source sequence to perform a timeout for.
Maximum duration between values before a timeout occurs.
Sequence to return in case of a timeout.
Scheduler to run the timeout timers on.
The source sequence switching to the other sequence in case of a timeout.
or or is null.
is less than TimeSpan.Zero.
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
arrive before the scheduler gets a chance to run the timeout action.
Applies a timeout policy to the observable sequence based on an absolute time.
If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer.
The type of the elements in the source sequence.
Source sequence to perform a timeout for.
Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
The source sequence with a TimeoutException in case of a timeout.
is null.
(Asynchronous) If the sequence hasn't terminated before .
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers.
If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer.
The type of the elements in the source sequence.
Source sequence to perform a timeout for.
Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
Scheduler to run the timeout timers on.
The source sequence with a TimeoutException in case of a timeout.
or is null.
(Asynchronous) If the sequence hasn't terminated before .
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Applies a timeout policy to the observable sequence based on an absolute time.
If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on.
The type of the elements in the source sequence and the other sequence used upon a timeout.
Source sequence to perform a timeout for.
Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
Sequence to return in case of a timeout.
The source sequence switching to the other sequence in case of a timeout.
or is null.
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers.
If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on.
The type of the elements in the source sequence and the other sequence used upon a timeout.
Source sequence to perform a timeout for.
Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
Sequence to return in case of a timeout.
Scheduler to run the timeout timers on.
The source sequence switching to the other sequence in case of a timeout.
or or is null.
In case you only want to timeout on the first element, consider using the
operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
of Timeout, can be used.
Applies a timeout policy to the observable sequence based on a timeout duration computed for each element.
If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer.
The type of the elements in the source sequence.
The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
Source sequence to perform a timeout for.
Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
The source sequence with a TimeoutException in case of a timeout.
or is null.
Applies a timeout policy to the observable sequence based on a timeout duration computed for each element.
If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
The type of the elements in the source sequence and the other sequence used upon a timeout.
The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
Source sequence to perform a timeout for.
Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
Sequence to return in case of a timeout.
The source sequence switching to the other sequence in case of a timeout.
or or is null.
Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element.
If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer.
The type of the elements in the source sequence.
The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
Source sequence to perform a timeout for.
Observable sequence that represents the timeout for the first element.
Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
The source sequence with a TimeoutException in case of a timeout.
or or is null.
Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element.
If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
The type of the elements in the source sequence and the other sequence used upon a timeout.
The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
Source sequence to perform a timeout for.
Observable sequence that represents the timeout for the first element.
Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
Sequence to return in case of a timeout.
The source sequence switching to the other sequence in case of a timeout.
or or or is null.
Returns an observable sequence that produces a single value after the specified relative due time has elapsed.
Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
An observable sequence that produces a value after the due time has elapsed.
Returns an observable sequence that produces a single value at the specified absolute due time.
Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
An observable sequence that produces a value at due time.
Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed.
Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
An observable sequence that produces a value after due time has elapsed and then after each period.
is less than TimeSpan.Zero.
Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time.
Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
An observable sequence that produces a value at due time and then after each period.
is less than TimeSpan.Zero.
Returns an observable sequence that produces a single value after the specified relative due time has elapsed, using the specified scheduler to run the timer.
Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
Scheduler to run the timer on.
An observable sequence that produces a value after the due time has elapsed.
is null.
Returns an observable sequence that produces a single value at the specified absolute due time, using the specified scheduler to run the timer.
Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
Scheduler to run the timer on.
An observable sequence that produces a value at due time.
is null.
Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers.
Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
Scheduler to run timers on.
An observable sequence that produces a value after due time has elapsed and then each period.
is less than TimeSpan.Zero.
is null.
Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time, using the specified scheduler to run timers.
Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
Scheduler to run timers on.
An observable sequence that produces a value at due time and then after each period.
is less than TimeSpan.Zero.
is null.
Timestamps each element in an observable sequence using the local system clock.
The type of the elements in the source sequence.
Source sequence to timestamp elements for.
An observable sequence with timestamp information on elements.
is null.
Timestamp each element in an observable sequence using the clock of the specified scheduler.
The type of the elements in the source sequence.
Source sequence to timestamp elements for.
Scheduler used to compute timestamps.
An observable sequence with timestamp information on elements.
or is null.
Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Length of each window.
The sequence of windows.
is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information, using the specified scheduler to run timers.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Length of each window.
Scheduler to run windowing timers on.
An observable sequence of windows.
or is null.
is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into zero or more windows which are produced based on timing information.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Length of each window.
Interval between creation of consecutive windows.
An observable sequence of windows.
is null.
or is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration
length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
current window may not execute immediately, despite the TimeSpan.Zero due time.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into zero or more windows which are produced based on timing information, using the specified scheduler to run timers.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Length of each window.
Interval between creation of consecutive windows.
Scheduler to run windowing timers on.
An observable sequence of windows.
or is null.
or is less than TimeSpan.Zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration
length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
current window may not execute immediately, despite the TimeSpan.Zero due time.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed.
A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Maximum time length of a window.
Maximum element count of a window.
An observable sequence of windows.
is null.
is less than TimeSpan.Zero. -or- is less than or equal to zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers.
A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
The type of the elements in the source sequence, and in the windows in the result sequence.
Source sequence to produce windows over.
Maximum time length of a window.
Maximum element count of a window.
Scheduler to run windowing timers on.
An observable sequence of windows.
or is null.
is less than TimeSpan.Zero. -or- is less than or equal to zero.
Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
Internal interface describing the LINQ to Events query language.
Base class for classes that expose an observable sequence as a well-known event pattern (sender, event arguments).
Contains functionality to maintain a map of event handler delegates to observable sequence subscriptions. Subclasses
should only add an event with custom add and remove methods calling into the base class's operations.
The type of the sender that raises the event.
The type of the event data generated by the event.
Creates a new event pattern source.
Source sequence to expose as an event.
Delegate used to invoke the event for each element of the sequence.
or is null.
Adds the specified event handler, causing a subscription to the underlying source.
Event handler to add. The same delegate should be passed to the Remove operation in order to remove the event handler.
Invocation delegate to raise the event in the derived class.
or is null.
Removes the specified event handler, causing a disposal of the corresponding subscription to the underlying source that was created during the Add operation.
Event handler to remove. This should be the same delegate as one that was passed to the Add operation.
is null.
Represents a .NET event invocation consisting of the weakly typed object that raised the event and the data that was generated by the event.
The type of the event data generated by the event.
Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event.
The type of the sender that raised the event.
The type of the event data generated by the event.
Creates a new data representation instance of a .NET event invocation with the given sender and event data.
The sender object that raised the event.
The event data that was generated by the event.
Determines whether the current EventPattern<TSender, TEventArgs> object represents the same event as a specified EventPattern<TSender, TEventArgs> object.
An object to compare to the current EventPattern<TSender, TEventArgs> object.
true if both EventPattern<TSender, TEventArgs> objects represent the same event; otherwise, false.
Determines whether the specified System.Object is equal to the current EventPattern<TSender, TEventArgs>.
The System.Object to compare with the current EventPattern<TSender, TEventArgs>.
true if the specified System.Object is equal to the current EventPattern<TSender, TEventArgs>; otherwise, false.
Returns the hash code for the current EventPattern<TSender, TEventArgs> instance.
A hash code for the current EventPattern<TSender, TEventArgs> instance.
Determines whether two specified EventPattern<TSender, TEventArgs> objects represent the same event.
The first EventPattern<TSender, TEventArgs> to compare, or null.
The second EventPattern<TSender, TEventArgs> to compare, or null.
true if both EventPattern<TSender, TEventArgs> objects represent the same event; otherwise, false.
Determines whether two specified EventPattern<TSender, TEventArgs> objects represent a different event.
The first EventPattern<TSender, TEventArgs> to compare, or null.
The second EventPattern<TSender, TEventArgs> to compare, or null.
true if both EventPattern<TSender, TEventArgs> objects don't represent the same event; otherwise, false.
Gets the sender object that raised the event.
Gets the event data that was generated by the event.
Creates a new data representation instance of a .NET event invocation with the given sender and event data.
The sender object that raised the event.
The event data that was generated by the event.
Base class for historical schedulers, which are virtual time schedulers that use DateTimeOffset for absolute time and TimeSpan for relative time.
Base class for virtual time schedulers.
Absolute time representation type.
Relative time representation type.
Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value.
Creates a new virtual time scheduler with the specified initial clock value and absolute time comparer.
Initial value for the clock.
Comparer to determine causality of events based on absolute time.
is null.
Adds a relative time value to an absolute time value.
Absolute time value.
Relative time value to add.
The resulting absolute time sum value.
Converts the absolute time value to a DateTimeOffset value.
Absolute time value to convert.
The corresponding DateTimeOffset value.
Converts the TimeSpan value to a relative time value.
TimeSpan value to convert.
The corresponding relative time value.
Schedules an action to be executed at dueTime.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Absolute time at which to execute the action.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
Schedules an action to be executed at dueTime.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Relative time after which to execute the action.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
Schedules an action to be executed.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
is null.
Schedules an action to be executed after dueTime.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Relative time after which to execute the action.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
is null.
Schedules an action to be executed at dueTime.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Absolute time at which to execute the action.
Action to be executed.
The disposable object used to cancel the scheduled action (best effort).
is null.
Starts the virtual time scheduler.
Stops the virtual time scheduler.
Advances the scheduler's clock to the specified time, running all work till that point.
Absolute time to advance the scheduler's clock to.
is in the past.
The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use .
Advances the scheduler's clock by the specified relative time, running all work scheduled for that timespan.
Relative time to advance the scheduler's clock by.
is negative.
The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use .
Advances the scheduler's clock by the specified relative time.
Relative time to advance the scheduler's clock by.
is negative.
Gets the next scheduled item to be executed.
The next scheduled item.
Discovers scheduler services by interface type. The base class implementation supports
only the IStopwatchProvider service. To influence service discovery - such as adding
support for other scheduler services - derived types can override this method.
Scheduler service interface type to discover.
Object implementing the requested service, if available; null otherwise.
Starts a new stopwatch object.
New stopwatch object; started at the time of the request.
Gets whether the scheduler is enabled to run work.
Gets the comparer used to compare absolute time values.
Gets the scheduler's absolute time clock value.
Gets the scheduler's notion of current time.
Creates a new historical scheduler with the minimum value of DateTimeOffset as the initial clock value.
Creates a new historical scheduler with the specified initial clock value.
Initial clock value.
Creates a new historical scheduler with the specified initial clock value and absolute time comparer.
Initial value for the clock.
Comparer to determine causality of events based on absolute time.
Adds a relative time value to an absolute time value.
Absolute time value.
Relative time value to add.
The resulting absolute time sum value.
Converts the absolute time value to a DateTimeOffset value.
Absolute time value to convert.
The corresponding DateTimeOffset value.
Converts the TimeSpan value to a relative time value.
TimeSpan value to convert.
The corresponding relative time value.
Provides a virtual time scheduler that uses DateTimeOffset for absolute time and TimeSpan for relative time.
Creates a new historical scheduler with the minimum value of DateTimeOffset as the initial clock value.
Creates a new historical scheduler with the specified initial clock value.
Initial value for the clock.
Creates a new historical scheduler with the specified initial clock value.
Initial value for the clock.
Comparer to determine causality of events based on absolute time.
is null.
Gets the next scheduled item to be executed.
The next scheduled item.
Schedules an action to be executed at dueTime.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Action to be executed.
Absolute time at which to execute the action.
The disposable object used to cancel the scheduled action (best effort).
is null.
Base class for virtual time schedulers using a priority queue for scheduled items.
Absolute time representation type.
Relative time representation type.
Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value.
Creates a new virtual time scheduler.
Initial value for the clock.
Comparer to determine causality of events based on absolute time.
is null.
Gets the next scheduled item to be executed.
The next scheduled item.
Schedules an action to be executed at dueTime.
The type of the state passed to the scheduled action.
State passed to the action to be executed.
Action to be executed.
Absolute time at which to execute the action.
The disposable object used to cancel the scheduled action (best effort).
is null.
Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence.
The type of the elements in the source sequence.
The type of the elements in the resulting sequence, after transformation through the subject.
Creates an observable that can be connected and disconnected from its source.
Underlying observable source sequence that can be connected and disconnected from the wrapper.
Subject exposed by the connectable observable, receiving data from the underlying source sequence upon connection.
Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established.
Disposable object used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence.
Subscribes an observer to the observable sequence. No values from the underlying observable source will be received unless a connection was established through the Connect method.
Observer that will receive values from the underlying observable source when the current ConnectableObservable instance is connected through a call to Connect.
Disposable used to unsubscribe from the observable sequence.
Provides a set of static methods for creating subjects.
Creates a subject from the specified observer and observable.
The type of the elements received by the observer.
The type of the elements produced by the observable sequence.
The observer used to send messages to the subject.
The observable used to subscribe to messages sent from the subject.
Subject implemented using the given observer and observable.
or is null.
Synchronizes the messages sent to the subject.
The type of the elements received by the subject.
The type of the elements produced by the subject.
The subject to synchronize.
Subject whose messages are synchronized.
is null.
Synchronizes the messages sent to the subject and notifies observers on the specified scheduler.
The type of the elements received by the subject.
The type of the elements produced by the subject.
The subject to synchronize.
Scheduler to notify observers on.
Subject whose messages are synchronized and whose observers are notified on the given scheduler.
or is null.
Represents the result of an asynchronous operation.
The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers.
The type of the elements processed by the subject.
Creates a subject that can only receive one value and that value is cached for all future observations.
Notifies all subscribed observers about the end of the sequence, also causing the last received value to be sent out (if any).
Notifies all subscribed observers about the exception.
The exception to send to all observers.
is null.
Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers.
The value to store in the subject.
Subscribes an observer to the subject.
Observer to subscribe to the subject.
Disposable object that can be used to unsubscribe the observer from the subject.
is null.
Unsubscribe all observers and release resources.
Gets an awaitable object for the current AsyncSubject.
Object that can be awaited.
Specifies a callback action that will be invoked when the subject completes.
Callback action that will be invoked when the subject completes.
is null.
Gets the last element of the subject, potentially blocking until the subject completes successfully or exceptionally.
The last element of the subject. Throws an InvalidOperationException if no element was received.
The source sequence is empty.
Indicates whether the subject has observers subscribed to it.
Gets whether the AsyncSubject has completed.
Represents a value that changes over time.
Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications.
The type of the elements processed by the subject.
Initializes a new instance of the class which creates a subject that caches its last value and starts with the specified value.
Initial value sent to observers when no other value has been received by the subject yet.
Notifies all subscribed observers about the end of the sequence.
Notifies all subscribed observers about the exception.
The exception to send to all observers.
is null.
Notifies all subscribed observers about the arrival of the specified element in the sequence.
The value to send to all observers.
Subscribes an observer to the subject.
Observer to subscribe to the subject.
Disposable object that can be used to unsubscribe the observer from the subject.
is null.
Unsubscribe all observers and release resources.
Indicates whether the subject has observers subscribed to it.
Represents an object that is both an observable sequence as well as an observer.
Each notification is broadcasted to all subscribed observers.
The type of the elements processed by the subject.
Creates a subject.
Notifies all subscribed observers about the end of the sequence.
Notifies all subscribed observers about the specified exception.
The exception to send to all currently subscribed observers.
is null.
Notifies all subscribed observers about the arrival of the specified element in the sequence.
The value to send to all currently subscribed observers.
Subscribes an observer to the subject.
Observer to subscribe to the subject.
Disposable object that can be used to unsubscribe the observer from the subject.
is null.
Releases all resources used by the current instance of the class and unsubscribes all observers.
Indicates whether the subject has observers subscribed to it.
Abstract base class for join patterns.
Represents a join pattern over one observable sequence.
The type of the elements in the first source sequence.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over two observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
Creates a pattern that matches when all three observable sequences have an available element.
The type of the elements in the third observable sequence.
Observable sequence to match with the two previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over three observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
Creates a pattern that matches when all four observable sequences have an available element.
The type of the elements in the fourth observable sequence.
Observable sequence to match with the three previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over four observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
Creates a pattern that matches when all five observable sequences have an available element.
The type of the elements in the fifth observable sequence.
Observable sequence to match with the four previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over five observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
Creates a pattern that matches when all six observable sequences have an available element.
The type of the elements in the sixth observable sequence.
Observable sequence to match with the five previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over six observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
Creates a pattern that matches when all seven observable sequences have an available element.
The type of the elements in the seventh observable sequence.
Observable sequence to match with the six previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over seven observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
Creates a pattern that matches when all eight observable sequences have an available element.
The type of the elements in the eighth observable sequence.
Observable sequence to match with the seven previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over eight observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
Creates a pattern that matches when all nine observable sequences have an available element.
The type of the elements in the ninth observable sequence.
Observable sequence to match with the eight previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over nine observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
Creates a pattern that matches when all ten observable sequences have an available element.
The type of the elements in the tenth observable sequence.
Observable sequence to match with the nine previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over ten observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
Creates a pattern that matches when all eleven observable sequences have an available element.
The type of the elements in the eleventh observable sequence.
Observable sequence to match with the ten previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over eleven observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
Creates a pattern that matches when all twelve observable sequences have an available element.
The type of the elements in the twelfth observable sequence.
Observable sequence to match with the eleven previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over twelve observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
Creates a pattern that matches when all thirteen observable sequences have an available element.
The type of the elements in the thirteenth observable sequence.
Observable sequence to match with the twelve previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over thirteen observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
Creates a pattern that matches when all fourteen observable sequences have an available element.
The type of the elements in the fourteenth observable sequence.
Observable sequence to match with the thirteen previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over fourteen observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
Creates a pattern that matches when all fifteen observable sequences have an available element.
The type of the elements in the fifteenth observable sequence.
Observable sequence to match with the fourteen previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over fifteen observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the fifteenth source sequence.
Creates a pattern that matches when all sixteen observable sequences have an available element.
The type of the elements in the sixteenth observable sequence.
Observable sequence to match with the fifteen previous sequences.
Pattern object that matches when all observable sequences have an available element.
is null.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents a join pattern over sixteen observable sequences.
The type of the elements in the first source sequence.
The type of the elements in the second source sequence.
The type of the elements in the third source sequence.
The type of the elements in the fourth source sequence.
The type of the elements in the fifth source sequence.
The type of the elements in the sixth source sequence.
The type of the elements in the seventh source sequence.
The type of the elements in the eighth source sequence.
The type of the elements in the ninth source sequence.
The type of the elements in the tenth source sequence.
The type of the elements in the eleventh source sequence.
The type of the elements in the twelfth source sequence.
The type of the elements in the thirteenth source sequence.
The type of the elements in the fourteenth source sequence.
The type of the elements in the fifteenth source sequence.
The type of the elements in the sixteenth source sequence.
Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
The type of the elements in the result sequence, returned by the selector function.
Selector that will be invoked for elements in the source sequences.
Plan that produces the projected results, to be fed (with other plans) to the When operator.
is null.
Represents an execution plan for join patterns.
The type of the results produced by the plan.
Represents an object that is both an observable sequence as well as an observer.
Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies.
The type of the elements processed by the subject.
Initializes a new instance of the class with the specified buffer size, window and scheduler.
Maximum element count of the replay buffer.
Maximum time length of the replay buffer.
Scheduler the observers are invoked on.
is less than zero. -or- is less than TimeSpan.Zero.
is null.
Initializes a new instance of the class with the specified buffer size and window.
Maximum element count of the replay buffer.
Maximum time length of the replay buffer.
is less than zero. -or- is less than TimeSpan.Zero.
Initializes a new instance of the class.
Initializes a new instance of the class with the specified scheduler.
Scheduler the observers are invoked on.
is null.
Initializes a new instance of the class with the specified buffer size and scheduler.
Maximum element count of the replay buffer.
Scheduler the observers are invoked on.
is null.
is less than zero.
Initializes a new instance of the class with the specified buffer size.
Maximum element count of the replay buffer.
is less than zero.
Initializes a new instance of the class with the specified window and scheduler.
Maximum time length of the replay buffer.
Scheduler the observers are invoked on.
is null.
is less than TimeSpan.Zero.
Initializes a new instance of the class with the specified window.
Maximum time length of the replay buffer.
is less than TimeSpan.Zero.
Notifies all subscribed and future observers about the arrival of the specified element in the sequence.
The value to send to all observers.
Notifies all subscribed and future observers about the specified exception.
The exception to send to all observers.
is null.
Notifies all subscribed and future observers about the end of the sequence.
Subscribes an observer to the subject.
Observer to subscribe to the subject.
Disposable object that can be used to unsubscribe the observer from the subject.
is null.
Releases all resources used by the current instance of the class and unsubscribe all observers.
Indicates whether the subject has observers subscribed to it.
The System.Reactive.Threading.Tasks namespace contains helpers for the conversion between tasks and observable sequences.
Provides a set of static methods for converting tasks to observable sequences.
Returns an observable sequence that signals when the task completes.
Task to convert to an observable sequence.
An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task.
is null.
If the specified task object supports cancellation, consider using instead.
Returns an observable sequence that propagates the result of the task.
The type of the result produced by the task.
Task to convert to an observable sequence.
An observable sequence that produces the task's result, or propagates the exception produced by the task.
is null.
If the specified task object supports cancellation, consider using instead.
Returns a task that will receive the last value or the exception produced by the observable sequence.
The type of the elements in the source sequence.
Observable sequence to convert to a task.
A task that will receive the last element or the exception produced by the observable sequence.
is null.
Returns a task that will receive the last value or the exception produced by the observable sequence.
The type of the elements in the source sequence.
Observable sequence to convert to a task.
The state to use as the underlying task's AsyncState.
A task that will receive the last element or the exception produced by the observable sequence.
is null.
Returns a task that will receive the last value or the exception produced by the observable sequence.
The type of the elements in the source sequence.
Observable sequence to convert to a task.
Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence.
A task that will receive the last element or the exception produced by the observable sequence.
is null.
Returns a task that will receive the last value or the exception produced by the observable sequence.
The type of the elements in the source sequence.
Observable sequence to convert to a task.
Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence.
The state to use as the underlying task's AsyncState.
A task that will receive the last element or the exception produced by the observable sequence.
is null.
Represents a value associated with time interval information.
The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc.
The type of the value being annotated with time interval information.
Constructs a time interval value.
The value to be annotated with a time interval.
Time interval associated with the value.
Determines whether the current TimeInterval<T> value has the same Value and Interval as a specified TimeInterval<T> value.
An object to compare to the current TimeInterval<T> value.
true if both TimeInterval<T> values have the same Value and Interval; otherwise, false.
Determines whether the two specified TimeInterval<T> values have the same Value and Interval.
The first TimeInterval<T> value to compare.
The second TimeInterval<T> value to compare.
true if the first TimeInterval<T> value has the same Value and Interval as the second TimeInterval<T> value; otherwise, false.
Determines whether the two specified TimeInterval<T> values don't have the same Value and Interval.
The first TimeInterval<T> value to compare.
The second TimeInterval<T> value to compare.
true if the first TimeInterval<T> value has a different Value or Interval as the second TimeInterval<T> value; otherwise, false.
Determines whether the specified System.Object is equal to the current TimeInterval<T>.
The System.Object to compare with the current TimeInterval<T>.
true if the specified System.Object is equal to the current TimeInterval<T>; otherwise, false.
Returns the hash code for the current TimeInterval<T> value.
A hash code for the current TimeInterval<T> value.
Returns a string representation of the current TimeInterval<T> value.
String representation of the current TimeInterval<T> value.
Gets the value.
Gets the interval.
Represents value with a timestamp on it.
The timestamp typically represents the time the value was received, using an IScheduler's clock to obtain the current time.
The type of the value being timestamped.
Constructs a timestamped value.
The value to be annotated with a timestamp.
Timestamp associated with the value.
Determines whether the current Timestamped<T> value has the same Value and Timestamp as a specified Timestamped<T> value.
An object to compare to the current Timestamped<T> value.
true if both Timestamped<T> values have the same Value and Timestamp; otherwise, false.
Determines whether the two specified Timestamped<T> values have the same Value and Timestamp.
The first Timestamped<T> value to compare.
The second Timestamped<T> value to compare.
true if the first Timestamped<T> value has the same Value and Timestamp as the second Timestamped<T> value; otherwise, false.
Determines whether the two specified Timestamped<T> values don't have the same Value and Timestamp.
The first Timestamped<T> value to compare.
The second Timestamped<T> value to compare.
true if the first Timestamped<T> value has a different Value or Timestamp as the second Timestamped<T> value; otherwise, false.
Determines whether the specified System.Object is equal to the current Timestamped<T>.
The System.Object to compare with the current Timestamped<T>.
true if the specified System.Object is equal to the current Timestamped<T>; otherwise, false.
Returns the hash code for the current Timestamped<T> value.
A hash code for the current Timestamped<T> value.
Returns a string representation of the current Timestamped<T> value.
String representation of the current Timestamped<T> value.
Gets the value.
Gets the timestamp.
A helper class with a factory method for creating Timestamped<T> instances.
Creates an instance of a Timestamped<T>. This is syntactic sugar that uses type inference
to avoid specifying a type in a constructor call, which is very useful when using anonymous types.
The value to be annotated with a timestamp.
Timestamp associated with the value.
Creates a new timestamped value.
A strongly-typed resource class, for looking up localized strings, etc.
Returns the cached ResourceManager instance used by this class.
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
Looks up a localized string similar to Could not find event '{0}' on object of type '{1}'..
Looks up a localized string similar to Could not find event '{0}' on type '{1}'..
Looks up a localized string similar to Add method should take 1 parameter..
Looks up a localized string similar to The second parameter of the event delegate must be assignable to '{0}'..
Looks up a localized string similar to Event is missing the add method..
Looks up a localized string similar to Event is missing the remove method..
Looks up a localized string similar to The event delegate must have a void return type..
Looks up a localized string similar to The event delegate must have exactly two parameters..
Looks up a localized string similar to Remove method should take 1 parameter..
Looks up a localized string similar to The first parameter of the event delegate must be assignable to '{0}'..
Looks up a localized string similar to Remove method of a WinRT event should take an EventRegistrationToken..
Looks up a localized string similar to Sequence contains more than one element..
Looks up a localized string similar to Sequence contains more than one matching element..
Looks up a localized string similar to Sequence contains no elements..
Looks up a localized string similar to Sequence contains no matching element..
Looks up a localized string similar to {0} cannot be called when the scheduler is already running. Try using Sleep instead..