comparison MetroWpf/Libs/Rx-Main.1.0.11226/lib/SL3-WP/System.Reactive.XML @ 15:060f02cd4591

Initial commit, pre airport work
author stevenh7776 stevenhollidge@hotmail.com
date Mon, 12 Mar 2012 23:05:21 +0800
parents
children
comparison
equal deleted inserted replaced
14:741981715d94 15:060f02cd4591
1 <?xml version="1.0"?>
2 <doc>
3 <assembly>
4 <name>System.Reactive</name>
5 </assembly>
6 <members>
7 <member name="T:System.Reactive.Disposables.SingleAssignmentDisposable">
8 <summary>
9 A SingleAssignmentDisposable only allows a single assignment of its disposable object. If it has already been assigned, attempts to set the underlying object will throw an InvalidOperationException.
10 </summary>
11 </member>
12 <member name="M:System.Reactive.Disposables.SingleAssignmentDisposable.#ctor">
13 <summary>
14 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.SingleAssignmentDisposable"/> class.
15 </summary>
16 </member>
17 <member name="M:System.Reactive.Disposables.SingleAssignmentDisposable.Dispose">
18 <summary>
19 Disposes the underlying disposable.
20 </summary>
21 </member>
22 <member name="P:System.Reactive.Disposables.SingleAssignmentDisposable.IsDisposed">
23 <summary>
24 Gets a value that indicates whether the object is disposed.
25 </summary>
26 </member>
27 <member name="P:System.Reactive.Disposables.SingleAssignmentDisposable.Disposable">
28 <summary>
29 Gets or sets the underlying disposable.
30 </summary>
31 <remarks>If the FutureDisposable has already been assigned then it will throw an InvalidOperationException.</remarks>
32 </member>
33 <member name="T:System.Reactive.Disposables.SerialDisposable">
34 <summary>
35 Represents a disposable whose underlying disposable can be swapped for another disposable which causes the previous underlying disposable to be disposed.
36 </summary>
37 </member>
38 <member name="M:System.Reactive.Disposables.SerialDisposable.#ctor">
39 <summary>
40 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.SerialDisposable"/> class.
41 </summary>
42 </member>
43 <member name="M:System.Reactive.Disposables.SerialDisposable.Dispose">
44 <summary>
45 Disposes the underlying disposable as well as all future replacements.
46 </summary>
47 </member>
48 <member name="P:System.Reactive.Disposables.SerialDisposable.IsDisposed">
49 <summary>
50 Gets a value that indicates whether the object is disposed.
51 </summary>
52 </member>
53 <member name="P:System.Reactive.Disposables.SerialDisposable.Disposable">
54 <summary>
55 Gets or sets the underlying disposable.
56 </summary>
57 <remarks>If the ReplaceDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. Assigning this property disposes the previous disposable object.</remarks>
58 </member>
59 <member name="T:System.Reactive.EventPattern`1">
60 <summary>
61 Represents the Sender and EventArg values of a .NET event.
62 </summary>
63 </member>
64 <member name="M:System.Reactive.EventPattern`1.#ctor(System.Object,`0)">
65 <summary>
66 Represents the Sender and EventArg values of a .NET event.
67 </summary>
68 <param name="sender">The source of the event.</param>
69 <param name="e">A TEventArgs that contains the event data.</param>
70 </member>
71 <member name="M:System.Reactive.EventPattern`1.Equals(System.Reactive.EventPattern{`0})">
72 <summary>
73 Indicates whether the current object is equal to another object of the same type.
74 </summary>
75 <param name="other">An object to compare with this object.</param>
76 <returns>true if the current object is equal to the other parameter; otherwise, false.</returns>
77 </member>
78 <member name="M:System.Reactive.EventPattern`1.Equals(System.Object)">
79 <summary>
80 Determines whether the specified System.Object is equal to the current EventPattern.
81 </summary>
82 <param name="obj">The System.Object to compare with the current EventPattern.</param>
83 <returns>true if the specified EventPattern is equal to the current System.Object; otherwise, false.</returns>
84 </member>
85 <member name="M:System.Reactive.EventPattern`1.GetHashCode">
86 <summary>
87 Serves as a hash function for a particular type.
88 </summary>
89 <returns>A hash code for the current EventPattern.</returns>
90 </member>
91 <member name="M:System.Reactive.EventPattern`1.op_Equality(System.Reactive.EventPattern{`0},System.Reactive.EventPattern{`0})">
92 <summary>
93 Determines whether two specified EventPatterns have the same value.
94 </summary>
95 <param name="first">The first EventPattern to compare, or null.</param>
96 <param name="second">The second EventPattern to compare, or null.</param>
97 <returns>true if the value of first is the same as the value of second; otherwise, false.</returns>
98 </member>
99 <member name="M:System.Reactive.EventPattern`1.op_Inequality(System.Reactive.EventPattern{`0},System.Reactive.EventPattern{`0})">
100 <summary>
101 Determines whether two specified EventPatterns have different values.
102 </summary>
103 <param name="first">The first EventPattern to compare, or null.</param>
104 <param name="second">The second EventPattern to compare, or null.</param>
105 <returns>true if the value of first is different from the value of second; otherwise, false.</returns>
106 </member>
107 <member name="P:System.Reactive.EventPattern`1.Sender">
108 <summary>
109 Gets the sender value of the event.
110 </summary>
111 </member>
112 <member name="P:System.Reactive.EventPattern`1.EventArgs">
113 <summary>
114 Gets the event arguments value of the event.
115 </summary>
116 </member>
117 <member name="T:System.Reactive.IEventPatternSource`1">
118 <summary>
119 Represents a data stream signaling its elements by means of an event.
120 </summary>
121 <typeparam name="TEventArgs">Event arguments type.</typeparam>
122 </member>
123 <member name="E:System.Reactive.IEventPatternSource`1.OnNext">
124 <summary>
125 Event signaling the next element in the data stream.
126 </summary>
127 </member>
128 <member name="T:System.Reactive.IEventSource`1">
129 <summary>
130 Represents a data stream signaling its elements by means of an event.
131 </summary>
132 <typeparam name="T">Event arguments type.</typeparam>
133 </member>
134 <member name="E:System.Reactive.IEventSource`1.OnNext">
135 <summary>
136 Event signaling the next element in the data stream.
137 </summary>
138 </member>
139 <member name="T:System.Reactive.Linq.Observable">
140 <summary>
141 Provides a set of static methods for query operations over observable sequences.
142 </summary>
143 </member>
144 <member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``1(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``0})">
145 <summary>
146 Converts a Begin/End invoke function pair into an asynchronous function.
147 </summary>
148 </member>
149 <member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``2(System.Func{``0,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``1})">
150 <summary>
151 Converts a Begin/End invoke function pair into an asynchronous function.
152 </summary>
153 </member>
154 <member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``3(System.Func{``0,``1,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``2})">
155 <summary>
156 Converts a Begin/End invoke function pair into an asynchronous function.
157 </summary>
158 </member>
159 <member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Func{``0})">
160 <summary>
161 Converts the function into an asynchronous function.
162 </summary>
163 </member>
164 <member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Func{``0},System.Reactive.Concurrency.IScheduler)">
165 <summary>
166 Converts the function into an asynchronous function.
167 </summary>
168 </member>
169 <member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Func{``0,``1})">
170 <summary>
171 Converts the function into an asynchronous function.
172 </summary>
173 </member>
174 <member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Func{``0,``1},System.Reactive.Concurrency.IScheduler)">
175 <summary>
176 Converts the function into an asynchronous function.
177 </summary>
178 </member>
179 <member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Func{``0,``1,``2})">
180 <summary>
181 Converts the function into an asynchronous function.
182 </summary>
183 </member>
184 <member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Func{``0,``1,``2},System.Reactive.Concurrency.IScheduler)">
185 <summary>
186 Converts the function into an asynchronous function.
187 </summary>
188 </member>
189 <member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Func{``0,``1,``2,``3})">
190 <summary>
191 Converts the function into an asynchronous function.
192 </summary>
193 </member>
194 <member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Func{``0,``1,``2,``3},System.Reactive.Concurrency.IScheduler)">
195 <summary>
196 Converts the function into an asynchronous function.
197 </summary>
198 </member>
199 <member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Func{``0,``1,``2,``3,``4})">
200 <summary>
201 Converts the function into an asynchronous function.
202 </summary>
203 </member>
204 <member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Func{``0,``1,``2,``3,``4},System.Reactive.Concurrency.IScheduler)">
205 <summary>
206 Converts the function into an asynchronous function.
207 </summary>
208 </member>
209 <member name="M:System.Reactive.Linq.Observable.ToAsync(System.Action)">
210 <summary>
211 Converts the action into an asynchronous function.
212 </summary>
213 </member>
214 <member name="M:System.Reactive.Linq.Observable.ToAsync(System.Action,System.Reactive.Concurrency.IScheduler)">
215 <summary>
216 Converts the action into an asynchronous function.
217 </summary>
218 </member>
219 <member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Action{``0})">
220 <summary>
221 Converts the action into an asynchronous function.
222 </summary>
223 </member>
224 <member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Action{``0},System.Reactive.Concurrency.IScheduler)">
225 <summary>
226 Converts the action into an asynchronous function.
227 </summary>
228 </member>
229 <member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Action{``0,``1})">
230 <summary>
231 Converts the action into an asynchronous function.
232 </summary>
233 </member>
234 <member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Action{``0,``1},System.Reactive.Concurrency.IScheduler)">
235 <summary>
236 Converts the action into an asynchronous function.
237 </summary>
238 </member>
239 <member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Action{``0,``1,``2})">
240 <summary>
241 Converts the action into an asynchronous function.
242 </summary>
243 </member>
244 <member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Action{``0,``1,``2},System.Reactive.Concurrency.IScheduler)">
245 <summary>
246 Converts the action into an asynchronous function.
247 </summary>
248 </member>
249 <member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Action{``0,``1,``2,``3})">
250 <summary>
251 Converts the action into an asynchronous function.
252 </summary>
253 </member>
254 <member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Action{``0,``1,``2,``3},System.Reactive.Concurrency.IScheduler)">
255 <summary>
256 Converts the action into an asynchronous function.
257 </summary>
258 </member>
259 <member name="M:System.Reactive.Linq.Observable.Start``1(System.Func{``0})">
260 <summary>
261 Invokes the function asynchronously.
262 </summary>
263 </member>
264 <member name="M:System.Reactive.Linq.Observable.Start``1(System.Func{``0},System.Reactive.Concurrency.IScheduler)">
265 <summary>
266 Invokes the function asynchronously.
267 </summary>
268 </member>
269 <member name="M:System.Reactive.Linq.Observable.Start(System.Action)">
270 <summary>
271 Invokes the action asynchronously.
272 </summary>
273 </member>
274 <member name="M:System.Reactive.Linq.Observable.Start(System.Action,System.Reactive.Concurrency.IScheduler)">
275 <summary>
276 Invokes the action asynchronously.
277 </summary>
278 </member>
279 <member name="M:System.Reactive.Linq.Observable.FromAsyncPattern(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
280 <summary>
281 Converts a Begin/End invoke function pair into an asynchronous function.
282 </summary>
283 </member>
284 <member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``1(System.Func{``0,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
285 <summary>
286 Converts a Begin/End invoke function pair into an asynchronous function.
287 </summary>
288 </member>
289 <member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``2(System.Func{``0,``1,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
290 <summary>
291 Converts a Begin/End invoke function pair into an asynchronous function.
292 </summary>
293 </member>
294 <member name="M:System.Reactive.Linq.Observable.Aggregate``2(System.IObservable{``0},``1,System.Func{``1,``0,``1})">
295 <summary>
296 Applies an accumulator function over an observable sequence. The specified seed value is used as the initial accumulator value.
297 </summary>
298 <param name="source">An observable sequence to aggregate over.</param>
299 <param name="seed">The initial accumulator value.</param>
300 <param name="accumulator">An accumulator function to be invoked on each element.</param>
301 <returns>An observable sequence containing a single element with the final accumulator value.</returns>
302 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
303 </member>
304 <member name="M:System.Reactive.Linq.Observable.Aggregate``1(System.IObservable{``0},System.Func{``0,``0,``0})">
305 <summary>
306 Applies an accumulator function over an observable sequence.
307 </summary>
308 <param name="source">An observable sequence to aggregate over.</param>
309 <param name="accumulator">An accumulator function to be invoked on each element.</param>
310 <returns>An observable sequence containing a single element with the final accumulator value.</returns>
311 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
312 </member>
313 <member name="M:System.Reactive.Linq.Observable.Any``1(System.IObservable{``0})">
314 <summary>
315 Determines whether an observable sequence contains any elements.
316 </summary>
317 <param name="source">An observable sequence to check for non-emptiness.</param>
318 <returns>An observable sequence containing a single element determining whether the source sequence contains any elements.</returns>
319 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
320 </member>
321 <member name="M:System.Reactive.Linq.Observable.Any``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
322 <summary>
323 Determines whether any element of an observable sequence satisfies a condition.
324 </summary>
325 <param name="source">An observable sequence whose elements to apply the predicate to.</param>
326 <param name="predicate">A function to test each element for a condition.</param>
327 <returns>An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate.</returns>
328 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
329 </member>
330 <member name="M:System.Reactive.Linq.Observable.All``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
331 <summary>
332 Determines whether all elements of an observable sequence satisfy a condition.
333 </summary>
334 <param name="source">An observable sequence whose elements to apply the predicate to.</param>
335 <param name="predicate">A function to test each element for a condition.</param>
336 <returns>An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.</returns>
337 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
338 </member>
339 <member name="M:System.Reactive.Linq.Observable.Contains``1(System.IObservable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
340 <summary>
341 Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer&lt;T&gt;.
342 </summary>
343 <param name="source">An observable sequence in which to locate a value.</param>
344 <param name="value">The value to locate in the sequence.</param>
345 <param name="comparer">An equality comparer to compare values.</param>
346 <returns>An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.</returns>
347 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
348 </member>
349 <member name="M:System.Reactive.Linq.Observable.Contains``1(System.IObservable{``0},``0)">
350 <summary>
351 Determines whether an observable sequence contains a specified element by using the default equality comparer.
352 </summary>
353 <param name="source">An observable sequence in which to locate a value.</param>
354 <param name="value">The value to locate in the sequence.</param>
355 <returns>An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.</returns>
356 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
357 </member>
358 <member name="M:System.Reactive.Linq.Observable.Count``1(System.IObservable{``0})">
359 <summary>
360 Returns a <see cref="T:System.Int32" /> that represents the total number of elements in an observable sequence.
361 </summary>
362 <param name="source">An observable sequence that contains elements to be counted.</param>
363 <returns>An observable sequence containing a single element with the number of elements in the input sequence.</returns>
364 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
365 </member>
366 <member name="M:System.Reactive.Linq.Observable.LongCount``1(System.IObservable{``0})">
367 <summary>
368 Returns a <see cref="T:System.Int64" /> that represents the total number of elements in an observable sequence.
369 </summary>
370 <param name="source">An observable sequence that contains elements to be counted.</param>
371 <returns>An observable sequence containing a single element with the number of elements in the input sequence.</returns>
372 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
373 </member>
374 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Double})">
375 <summary>
376 Computes the sum of a sequence of <see cref="T:System.Double" /> values.
377 </summary>
378 <param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the sum of.</param>
379 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
380 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
381 </member>
382 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Single})">
383 <summary>
384 Computes the sum of a sequence of <see cref="T:System.Single" /> values.
385 </summary>
386 <param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the sum of.</param>
387 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
388 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
389 </member>
390 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Decimal})">
391 <summary>
392 Computes the sum of a sequence of <see cref="T:System.Decimal" /> values.
393 </summary>
394 <param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
395 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
396 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
397 </member>
398 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Int32})">
399 <summary>
400 Computes the sum of a sequence of <see cref="T:System.Int32" /> values.
401 </summary>
402 <param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the sum of.</param>
403 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
404 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
405 </member>
406 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Int64})">
407 <summary>
408 Computes the sum of a sequence of <see cref="T:System.Int64" /> values.
409 </summary>
410 <param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the sum of.</param>
411 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
412 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
413 </member>
414 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Double}})">
415 <summary>
416 Computes the sum of a sequence of nullable <see cref="T:System.Double" /> values.
417 </summary>
418 <param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the sum of.</param>
419 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
420 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
421 </member>
422 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Single}})">
423 <summary>
424 Computes the sum of a sequence of nullable <see cref="T:System.Single" /> values.
425 </summary>
426 <param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the sum of.</param>
427 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
428 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
429 </member>
430 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Decimal}})">
431 <summary>
432 Computes the sum of a sequence of nullable <see cref="T:System.Decimal" /> values.
433 </summary>
434 <param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
435 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
436 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
437 </member>
438 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Int32}})">
439 <summary>
440 Computes the sum of a sequence of nullable <see cref="T:System.Int32" /> values.
441 </summary>
442 <param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to calculate the sum of.</param>
443 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
444 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
445 </member>
446 <member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Int64}})">
447 <summary>
448 Computes the sum of a sequence of nullable <see cref="T:System.Int64" /> values.
449 </summary>
450 <param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to calculate the sum of.</param>
451 <returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
452 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
453 </member>
454 <member name="M:System.Reactive.Linq.Observable.MinBy``2(System.IObservable{``0},System.Func{``0,``1})">
455 <summary>
456 Returns the elements in an observable sequence with the minimum key value.
457 </summary>
458 <param name="source">An observable sequence to get the minimum elements for.</param>
459 <param name="keySelector">Key selector function.</param>
460 <returns>An observable sequence containing a list of zero or more elements that have a minimum key value.</returns>
461 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
462 </member>
463 <member name="M:System.Reactive.Linq.Observable.MinBy``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
464 <summary>
465 Returns the elements in an observable sequence with the minimum key value according to the specified comparer.
466 </summary>
467 <param name="source">An observable sequence to get the minimum elements for.</param>
468 <param name="keySelector">Key selector function.</param>
469 <param name="comparer">Comparer used to compare key values.</param>
470 <returns>An observable sequence containing a list of zero or more elements that have a minimum key value.</returns>
471 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
472 </member>
473 <member name="M:System.Reactive.Linq.Observable.Min``1(System.IObservable{``0})">
474 <summary>
475 Returns the minimum element in an observable sequence.
476 </summary>
477 <param name="source">An observable sequence to determine the mimimum element of.</param>
478 <returns>An observable sequence containing a single element with the minimum element in the sequence.</returns>
479 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
480 </member>
481 <member name="M:System.Reactive.Linq.Observable.Min``1(System.IObservable{``0},System.Collections.Generic.IComparer{``0})">
482 <summary>
483 Returns the minimum element in an observable sequence according to the specified comparer.
484 </summary>
485 <param name="source">An observable sequence to determine the mimimum element of.</param>
486 <param name="comparer">Comparer used to compare elements.</param>
487 <returns>An observable sequence containing a single element with the minimum element in the sequence.</returns>
488 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
489 </member>
490 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Double})">
491 <summary>
492 Returns the minimum value in an observable sequence of <see cref="T:System.Double" /> values.
493 </summary>
494 <param name="source">A sequence of <see cref="T:System.Double" /> values to determine the minimum value of.</param>
495 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
496 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
497 </member>
498 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Single})">
499 <summary>
500 Returns the minimum value in an observable sequence of <see cref="T:System.Single" /> values.
501 </summary>
502 <param name="source">A sequence of <see cref="T:System.Single" /> values to determine the minimum value of.</param>
503 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
504 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
505 </member>
506 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Decimal})">
507 <summary>
508 Returns the minimum value in an observable sequence of <see cref="T:System.Decimal" /> values.
509 </summary>
510 <param name="source">A sequence of <see cref="T:System.Decimal" /> values to determine the minimum value of.</param>
511 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
512 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
513 </member>
514 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Int32})">
515 <summary>
516 Returns the minimum value in an observable sequence of <see cref="T:System.Int32" /> values.
517 </summary>
518 <param name="source">A sequence of <see cref="T:System.Int32" /> values to determine the minimum value of.</param>
519 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
520 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
521 </member>
522 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Int64})">
523 <summary>
524 Returns the minimum value in an observable sequence of <see cref="T:System.Int64" /> values.
525 </summary>
526 <param name="source">A sequence of <see cref="T:System.Int64" /> values to determine the minimum value of.</param>
527 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
528 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
529 </member>
530 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Double}})">
531 <summary>
532 Returns the minimum value in an observable sequence of nullable <see cref="T:System.Double" /> values.
533 </summary>
534 <param name="source">A sequence of nullable <see cref="T:System.Double" /> values to determine the minimum value of.</param>
535 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
536 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
537 </member>
538 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Single}})">
539 <summary>
540 Returns the minimum value in an observable sequence of nullable <see cref="T:System.Single" /> values.
541 </summary>
542 <param name="source">A sequence of nullable <see cref="T:System.Single" /> values to determine the minimum value of.</param>
543 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
544 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
545 </member>
546 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Decimal}})">
547 <summary>
548 Returns the minimum value in an observable sequence of nullable <see cref="T:System.Decimal" /> values.
549 </summary>
550 <param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to determine the minimum value of.</param>
551 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
552 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
553 </member>
554 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Int32}})">
555 <summary>
556 Returns the minimum value in an observable sequence of nullable <see cref="T:System.Int32" /> values.
557 </summary>
558 <param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to determine the minimum value of.</param>
559 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
560 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
561 </member>
562 <member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Int64}})">
563 <summary>
564 Returns the minimum value in an observable sequence of nullable <see cref="T:System.Int64" /> values.
565 </summary>
566 <param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to determine the minimum value of.</param>
567 <returns>An observable sequence containing a single element with the minimum value in the sequence.</returns>
568 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
569 </member>
570 <member name="M:System.Reactive.Linq.Observable.MaxBy``2(System.IObservable{``0},System.Func{``0,``1})">
571 <summary>
572 Returns the elements in an observable sequence with the maximum key value.
573 </summary>
574 <param name="source">An observable sequence to get the maximum elements for.</param>
575 <param name="keySelector">Key selector function.</param>
576 <returns>An observable sequence containing a list of zero or more elements that have a maximum key value.</returns>
577 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
578 </member>
579 <member name="M:System.Reactive.Linq.Observable.MaxBy``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
580 <summary>
581 Returns the elements in an observable sequence with the maximum key value according to the specified comparer.
582 </summary>
583 <param name="source">An observable sequence to get the maximum elements for.</param>
584 <param name="keySelector">Key selector function.</param>
585 <param name="comparer">Comparer used to compare key values.</param>
586 <returns>An observable sequence containing a list of zero or more elements that have a maximum key value.</returns>
587 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
588 </member>
589 <member name="M:System.Reactive.Linq.Observable.Max``1(System.IObservable{``0})">
590 <summary>
591 Returns the maximum element in an observable sequence.
592 </summary>
593 <param name="source">An observable sequence to determine the maximum element of.</param>
594 <returns>An observable sequence containing a single element with the maximum element in the sequence.</returns>
595 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
596 </member>
597 <member name="M:System.Reactive.Linq.Observable.Max``1(System.IObservable{``0},System.Collections.Generic.IComparer{``0})">
598 <summary>
599 Returns the maximum value in an observable sequence according to the specified comparer.
600 </summary>
601 <param name="source">An observable sequence to determine the maximum element of.</param>
602 <param name="comparer">Comparer used to compare elements.</param>
603 <returns>An observable sequence containing a single element with the maximum element in the sequence.</returns>
604 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
605 </member>
606 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Double})">
607 <summary>
608 Returns the maximum value in an observable sequence of <see cref="T:System.Double" /> values.
609 </summary>
610 <param name="source">A sequence of <see cref="T:System.Double" /> values to determine the maximum value of.</param>
611 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
612 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
613 </member>
614 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Single})">
615 <summary>
616 Returns the maximum value in an observable sequence of <see cref="T:System.Single" /> values.
617 </summary>
618 <param name="source">A sequence of <see cref="T:System.Single" /> values to determine the maximum value of.</param>
619 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
620 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
621 </member>
622 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Decimal})">
623 <summary>
624 Returns the maximum value in an observable sequence of <see cref="T:System.Decimal" /> values.
625 </summary>
626 <param name="source">A sequence of <see cref="T:System.Decimal" /> values to determine the maximum value of.</param>
627 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
628 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
629 </member>
630 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Int32})">
631 <summary>
632 Returns the maximum value in an observable sequence of <see cref="T:System.Int32" /> values.
633 </summary>
634 <param name="source">A sequence of <see cref="T:System.Int32" /> values to determine the maximum value of.</param>
635 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
636 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
637 </member>
638 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Int64})">
639 <summary>
640 Returns the maximum value in an observable sequence of <see cref="T:System.Int64" /> values.
641 </summary>
642 <param name="source">A sequence of <see cref="T:System.Int64" /> values to determine the maximum value of.</param>
643 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
644 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
645 </member>
646 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Double}})">
647 <summary>
648 Returns the maximum value in an observable sequence of nullable <see cref="T:System.Double" /> values.
649 </summary>
650 <param name="source">A sequence of nullable <see cref="T:System.Double" /> values to determine the maximum value of.</param>
651 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
652 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
653 </member>
654 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Single}})">
655 <summary>
656 Returns the maximum value in an observable sequence of nullable <see cref="T:System.Single" /> values.
657 </summary>
658 <param name="source">A sequence of nullable <see cref="T:System.Single" /> values to determine the maximum value of.</param>
659 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
660 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
661 </member>
662 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Decimal}})">
663 <summary>
664 Returns the maximum value in an observable sequence of nullable <see cref="T:System.Decimal" /> values.
665 </summary>
666 <param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to determine the maximum value of.</param>
667 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
668 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
669 </member>
670 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Int32}})">
671 <summary>
672 Returns the maximum value in an observable sequence of nullable <see cref="T:System.Int32" /> values.
673 </summary>
674 <param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to determine the maximum value of.</param>
675 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
676 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
677 </member>
678 <member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Int64}})">
679 <summary>
680 Returns the maximum value in an observable sequence of nullable <see cref="T:System.Int64" /> values.
681 </summary>
682 <param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to determine the maximum value of.</param>
683 <returns>An observable sequence containing a single element with the maximum value in the sequence.</returns>
684 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
685 </member>
686 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Double})">
687 <summary>
688 Computes the average of an observable sequence of <see cref="T:System.Double" /> values.
689 </summary>
690 <param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the average of.</param>
691 <returns>An observable sequence containing a single element with the average of the sequence of values.</returns>
692 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
693 </member>
694 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Single})">
695 <summary>
696 Computes the average of an observable sequence of <see cref="T:System.Single" /> values.
697 </summary>
698 <param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the average of.</param>
699 <returns>An observable sequence containing a single element with the average of the sequence of values.</returns>
700 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
701 </member>
702 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Decimal})">
703 <summary>
704 Computes the average of an observable sequence of <see cref="T:System.Decimal" /> values.
705 </summary>
706 <param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the average of.</param>
707 <returns>An observable sequence containing a single element with the average of the sequence of values.</returns>
708 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
709 </member>
710 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Int32})">
711 <summary>
712 Computes the average of an observable sequence of <see cref="T:System.Int32" /> values.
713 </summary>
714 <param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the average of.</param>
715 <returns>An observable sequence containing a single element with the average of the sequence of values.</returns>
716 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
717 </member>
718 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Int64})">
719 <summary>
720 Computes the average of an observable sequence of <see cref="T:System.Int64" /> values.
721 </summary>
722 <param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the average of.</param>
723 <returns>An observable sequence containing a single element with the average of the sequence of values.</returns>
724 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
725 </member>
726 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Double}})">
727 <summary>
728 Computes the average of an observable sequence of nullable <see cref="T:System.Double" /> values.
729 </summary>
730 <param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the average of.</param>
731 <returns>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.</returns>
732 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
733 </member>
734 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Single}})">
735 <summary>
736 Computes the average of an observable sequence of nullable <see cref="T:System.Single" /> values.
737 </summary>
738 <param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the average of.</param>
739 <returns>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.</returns>
740 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
741 </member>
742 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Decimal}})">
743 <summary>
744 Computes the average of an observable sequence of nullable <see cref="T:System.Decimal" /> values.
745 </summary>
746 <param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the average of.</param>
747 <returns>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.</returns>
748 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
749 </member>
750 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Int32}})">
751 <summary>
752 Computes the average of an observable sequence of nullable <see cref="T:System.Int32" /> values.
753 </summary>
754 <param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to calculate the average of.</param>
755 <returns>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.</returns>
756 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
757 </member>
758 <member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Int64}})">
759 <summary>
760 Computes the average of an observable sequence of nullable <see cref="T:System.Int64" /> values.
761 </summary>
762 <param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to calculate the average of.</param>
763 <returns>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.</returns>
764 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
765 </member>
766 <member name="M:System.Reactive.Linq.Observable.ToList``1(System.IObservable{``0})">
767 <summary>
768 Creates a list from an observable sequence.
769 </summary>
770 <param name="source">The source observable sequence to get a list of elements for.</param>
771 <returns>An observable sequence containing a single element with a list containing all the elements of the source sequence.</returns>
772 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
773 </member>
774 <member name="M:System.Reactive.Linq.Observable.ToArray``1(System.IObservable{``0})">
775 <summary>
776 Creates an array from an observable sequence.
777 </summary>
778 <param name="source">The source observable sequence to get an array of elements for.</param>
779 <returns>An observable sequence containing a single element with an array containing all the elements of the source sequence.</returns>
780 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
781 </member>
782 <member name="M:System.Reactive.Linq.Observable.ToDictionary``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
783 <summary>
784 Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
785 </summary>
786 <param name="source">An observable sequence to create a dictionary for.</param>
787 <param name="keySelector">A function to extract a key from each element.</param>
788 <param name="elementSelector">A transform function to produce a result element value from each element.</param>
789 <param name="comparer">An equality comparer to compare keys.</param>
790 <returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns>
791 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
792 </member>
793 <member name="M:System.Reactive.Linq.Observable.ToDictionary``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2})">
794 <summary>
795 Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function.
796 </summary>
797 <param name="source">An observable sequence to create a dictionary for.</param>
798 <param name="keySelector">A function to extract a key from each element.</param>
799 <param name="elementSelector">A transform function to produce a result element value from each element.</param>
800 <returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns>
801 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
802 </member>
803 <member name="M:System.Reactive.Linq.Observable.ToDictionary``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
804 <summary>
805 Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer.
806 </summary>
807 <param name="source">An observable sequence to create a dictionary for.</param>
808 <param name="keySelector">A function to extract a key from each element.</param>
809 <param name="comparer">An equality comparer to compare keys.</param>
810 <returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns>
811 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
812 </member>
813 <member name="M:System.Reactive.Linq.Observable.ToDictionary``2(System.IObservable{``0},System.Func{``0,``1})">
814 <summary>
815 Creates a dictionary from an observable sequence according to a specified key selector function.
816 </summary>
817 <param name="source">An observable sequence to create a dictionary for.</param>
818 <param name="keySelector">A function to extract a key from each element.</param>
819 <returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns>
820 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
821 </member>
822 <member name="M:System.Reactive.Linq.Observable.ToLookup``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
823 <summary>
824 Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
825 </summary>
826 <param name="source">An observable sequence to create a lookup for.</param>
827 <param name="keySelector">A function to extract a key from each element.</param>
828 <param name="elementSelector">A transform function to produce a result element value from each element.</param>
829 <param name="comparer">An equality comparer to compare keys.</param>
830 <returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns>
831 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
832 </member>
833 <member name="M:System.Reactive.Linq.Observable.ToLookup``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
834 <summary>
835 Creates a lookup from an observable sequence according to a specified key selector function, and a comparer.
836 </summary>
837 <param name="source">An observable sequence to create a lookup for.</param>
838 <param name="keySelector">A function to extract a key from each element.</param>
839 <param name="comparer">An equality comparer to compare keys.</param>
840 <returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns>
841 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
842 </member>
843 <member name="M:System.Reactive.Linq.Observable.ToLookup``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2})">
844 <summary>
845 Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function.
846 </summary>
847 <param name="source">An observable sequence to create a lookup for.</param>
848 <param name="keySelector">A function to extract a key from each element.</param>
849 <param name="elementSelector">A transform function to produce a result element value from each element.</param>
850 <returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns>
851 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
852 </member>
853 <member name="M:System.Reactive.Linq.Observable.ToLookup``2(System.IObservable{``0},System.Func{``0,``1})">
854 <summary>
855 Creates a lookup from an observable sequence according to a specified key selector function.
856 </summary>
857 <param name="source">An observable sequence to create a lookup for.</param>
858 <param name="keySelector">A function to extract a key from each element.</param>
859 <returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns>
860 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
861 </member>
862 <member name="M:System.Reactive.Linq.Observable.SequenceEqual``1(System.IObservable{``0},System.IObservable{``0},System.Collections.Generic.IEqualityComparer{``0})">
863 <summary>
864 Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer.
865 </summary>
866 <param name="first">First observable sequence to compare.</param>
867 <param name="second">Second observable sequence to compare.</param>
868 <param name="comparer">Comparer used to compare elements of both sequences.</param>
869 <returns>An observable sequence that contains a single element which indicates whether both sequences are equal.</returns>
870 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
871 </member>
872 <member name="M:System.Reactive.Linq.Observable.SequenceEqual``1(System.IObservable{``0},System.IObservable{``0})">
873 <summary>
874 Determines whether two sequences are equal by comparing the elements pairwise.
875 </summary>
876 <param name="first">First observable sequence to compare.</param>
877 <param name="second">Second observable sequence to compare.</param>
878 <returns>An observable sequence that contains a single element which indicates whether both sequences are equal.</returns>
879 <remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
880 </member>
881 <member name="M:System.Reactive.Linq.Observable.RefCount``1(System.Reactive.Subjects.IConnectableObservable{``0})">
882 <summary>
883 Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
884 </summary>
885 <param name="source">Connectable observable sequence.</param>
886 <returns>An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.</returns>
887 </member>
888 <member name="M:System.Reactive.Linq.Observable.Multicast``2(System.IObservable{``0},System.Reactive.Subjects.ISubject{``0,``1})">
889 <summary>
890 Returns a connectable observable sequence that upon connection causes the source sequence to push results into the specified subject.
891 </summary>
892 <param name="source">Source sequence whose elements will be pushed into the specified subject.</param>
893 <param name="subject">Subject to push source elements into.</param>
894 <returns>A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject.</returns>
895 </member>
896 <member name="M:System.Reactive.Linq.Observable.Multicast``3(System.IObservable{``0},System.Func{System.Reactive.Subjects.ISubject{``0,``1}},System.Func{System.IObservable{``1},System.IObservable{``2}})">
897 <summary>
898 Returns an observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
899 </summary>
900 <param name="source">Source sequence which will be multicasted in the specified selector function.</param>
901 <param name="subjectSelector">Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function.</param>
902 <param name="selector">Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject.</param>
903 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
904 </member>
905 <member name="M:System.Reactive.Linq.Observable.Publish``1(System.IObservable{``0})">
906 <summary>
907 Returns a connectable observable sequence that shares a single subscription to the underlying sequence.
908 </summary>
909 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
910 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
911 <remarks>Subscribers will receive all notifications of the source from the time of the subscription on.</remarks>
912 </member>
913 <member name="M:System.Reactive.Linq.Observable.Publish``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}})">
914 <summary>
915 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.
916 </summary>
917 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
918 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence.</param>
919 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
920 </member>
921 <member name="M:System.Reactive.Linq.Observable.PublishLast``1(System.IObservable{``0})">
922 <summary>
923 Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.
924 </summary>
925 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
926 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
927 <remarks>Subscribers will only receive the last notification of the source.</remarks>
928 </member>
929 <member name="M:System.Reactive.Linq.Observable.PublishLast``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}})">
930 <summary>
931 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.
932 </summary>
933 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
934 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will only receive the last notification of the source.</param>
935 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
936 </member>
937 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0})">
938 <summary>
939 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
940 </summary>
941 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
942 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
943 <remarks>Subscribers will receive all the notifications of the source.</remarks>
944 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
945 </member>
946 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
947 <summary>
948 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
949 </summary>
950 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
951 <param name="scheduler">Scheduler where connected observers will be invoked on.</param>
952 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
953 <remarks>Subscribers will receive all the notifications of the source.</remarks>
954 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
955 </member>
956 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}})">
957 <summary>
958 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.
959 </summary>
960 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
961 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
962 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
963 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
964 </member>
965 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Reactive.Concurrency.IScheduler)">
966 <summary>
967 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.
968 </summary>
969 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
970 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
971 <param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param>
972 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
973 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
974 </member>
975 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.TimeSpan)">
976 <summary>
977 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.
978 </summary>
979 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
980 <param name="window">Maximum time length of the replay buffer.</param>
981 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
982 <remarks>Subscribers will receive all the notifications of the source.</remarks>
983 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
984 </member>
985 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.TimeSpan)">
986 <summary>
987 Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.
988 </summary>
989 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
990 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
991 <param name="window">Maximum time length of the replay buffer.</param>
992 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
993 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
994 </member>
995 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
996 <summary>
997 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.
998 </summary>
999 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1000 <param name="window">Maximum time length of the replay buffer.</param>
1001 <param name="scheduler">Scheduler where connected observers will be invoked on.</param>
1002 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
1003 <remarks>Subscribers will receive all the notifications of the source.</remarks>
1004 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1005 </member>
1006 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
1007 <summary>
1008 Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.
1009 </summary>
1010 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
1011 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
1012 <param name="window">Maximum time length of the replay buffer.</param>
1013 <param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param>
1014 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
1015 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1016 </member>
1017 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32,System.Reactive.Concurrency.IScheduler)">
1018 <summary>
1019 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
1020 </summary>
1021 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1022 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1023 <param name="scheduler">Scheduler where connected observers will be invoked on.</param>
1024 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
1025 <remarks>Subscribers will receive all the notifications of the source.</remarks>
1026 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1027 </member>
1028 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32,System.Reactive.Concurrency.IScheduler)">
1029 <summary>
1030 Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
1031 </summary>
1032 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
1033 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
1034 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1035 <param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param>
1036 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
1037 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1038 </member>
1039 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32)">
1040 <summary>
1041 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
1042 </summary>
1043 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1044 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1045 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
1046 <remarks>Subscribers will receive all the notifications of the source.</remarks>
1047 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1048 </member>
1049 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32)">
1050 <summary>
1051 Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
1052 </summary>
1053 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
1054 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
1055 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1056 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
1057 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1058 </member>
1059 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32,System.TimeSpan)">
1060 <summary>
1061 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.
1062 </summary>
1063 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1064 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1065 <param name="window">Maximum time length of the replay buffer.</param>
1066 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
1067 <remarks>Subscribers will receive all the notifications of the source.</remarks>
1068 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1069 </member>
1070 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32,System.TimeSpan)">
1071 <summary>
1072 Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.
1073 </summary>
1074 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
1075 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
1076 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1077 <param name="window">Maximum time length of the replay buffer.</param>
1078 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
1079 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1080 </member>
1081 <member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
1082 <summary>
1083 Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.
1084 </summary>
1085 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1086 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1087 <param name="window">Maximum time length of the replay buffer.</param>
1088 <param name="scheduler">Scheduler where connected observers will be invoked on.</param>
1089 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
1090 <remarks>Subscribers will receive all the notifications of the source.</remarks>
1091 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1092 </member>
1093 <member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
1094 <summary>
1095 Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.
1096 </summary>
1097 <param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param>
1098 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param>
1099 <param name="bufferSize">Maximum element count of the replay buffer.</param>
1100 <param name="window">Maximum time length of the replay buffer.</param>
1101 <param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param>
1102 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
1103 <seealso cref="T:System.Reactive.Subjects.ReplaySubject"/>
1104 </member>
1105 <member name="M:System.Reactive.Linq.Observable.Publish``1(System.IObservable{``0},``0)">
1106 <summary>
1107 Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue.
1108 </summary>
1109 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1110 <param name="initialValue">Initial value received by observers upon subscription.</param>
1111 <returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns>
1112 <remarks>Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.</remarks>
1113 </member>
1114 <member name="M:System.Reactive.Linq.Observable.Publish``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},``0)">
1115 <summary>
1116 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.
1117 </summary>
1118 <param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param>
1119 <param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.</param>
1120 <param name="initialValue">Initial value received by observers upon subscription.</param>
1121 <returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns>
1122 <seealso cref="T:System.Reactive.Subjects.Subject"/>
1123 </member>
1124 <member name="M:System.Reactive.Linq.Observable.ToEnumerable``1(System.IObservable{``0})">
1125 <summary>
1126 Converts an observable sequence to an enumerable sequence.
1127 </summary>
1128 <param name="source">An observable sequence to convert to an enumerable sequence.</param>
1129 <returns>The enumerable sequence containing the elements in the observable sequence.</returns>
1130 </member>
1131 <member name="M:System.Reactive.Linq.Observable.GetEnumerator``1(System.IObservable{``0})">
1132 <summary>
1133 Returns an enumerator that enumerates all values of the observable sequence.
1134 </summary>
1135 <param name="source">An observable sequence to get an enumerator for.</param>
1136 <returns>The enumerator that can be used to enumerate over the elements in the observable sequence.</returns>
1137 </member>
1138 <member name="M:System.Reactive.Linq.Observable.MostRecent``1(System.IObservable{``0},``0)">
1139 <summary>
1140 Samples the most recent value in an observable sequence.
1141 </summary>
1142 <param name="source">Source observable sequence.</param>
1143 <param name="initialValue">Initial value that will be yielded by the enumerable sequence if no element has been sampled yet.</param>
1144 <returns>The enumerable sequence that returns the last sampled element upon each iteration.</returns>
1145 </member>
1146 <member name="M:System.Reactive.Linq.Observable.Next``1(System.IObservable{``0})">
1147 <summary>
1148 Samples the next value (blocking without buffering) from in an observable sequence.
1149 </summary>
1150 <param name="source">Source observable sequence.</param>
1151 <returns>The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available.</returns>
1152 </member>
1153 <member name="M:System.Reactive.Linq.Observable.Latest``1(System.IObservable{``0})">
1154 <summary>
1155 Samples the most recent value in an observable sequence.
1156 </summary>
1157 <param name="source">Source observable sequence.</param>
1158 <returns>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>
1159 </member>
1160 <member name="M:System.Reactive.Linq.Observable.First``1(System.IObservable{``0})">
1161 <summary>
1162 Returns the first element of an observable sequence.
1163 </summary>
1164 <param name="source">Source observable sequence.</param>
1165 <returns>The first element in the observable sequence.</returns>
1166 </member>
1167 <member name="M:System.Reactive.Linq.Observable.FirstOrDefault``1(System.IObservable{``0})">
1168 <summary>
1169 Returns the first element of an observable sequence, or a default value if no value is found.
1170 </summary>
1171 <param name="source">Source observable sequence.</param>
1172 <returns>The first element in the observable sequence, or a default value if no value is found.</returns>
1173 </member>
1174 <member name="M:System.Reactive.Linq.Observable.First``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
1175 <summary>
1176 Returns the first element of an observable sequence that matches the predicate.
1177 </summary>
1178 <param name="source">Source observable sequence.</param>
1179 <param name="predicate">A predicate function to evaluate for elements in the sequence.</param>
1180 <returns>The first element in the observable sequence for which the predicate holds.</returns>
1181 </member>
1182 <member name="M:System.Reactive.Linq.Observable.FirstOrDefault``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
1183 <summary>
1184 Returns the first element of an observable sequence that matches the predicate, or a default value if no value is found.
1185 </summary>
1186 <param name="source">Source observable sequence.</param>
1187 <param name="predicate">A predicate function to evaluate for elements in the sequence.</param>
1188 <returns>The first element in the observable sequence for which the predicate holds, or a default value if no value is found.</returns>
1189 </member>
1190 <member name="M:System.Reactive.Linq.Observable.Last``1(System.IObservable{``0})">
1191 <summary>
1192 Returns the last element of an observable sequence.
1193 </summary>
1194 <param name="source">Source observable sequence.</param>
1195 <returns>The last element in the observable sequence.</returns>
1196 </member>
1197 <member name="M:System.Reactive.Linq.Observable.LastOrDefault``1(System.IObservable{``0})">
1198 <summary>
1199 Returns the last element of an observable sequence, or a default value if no value is found.
1200 </summary>
1201 <param name="source">Source observable sequence.</param>
1202 <returns>The last element in the observable sequence, or a default value if no value is found.</returns>
1203 </member>
1204 <member name="M:System.Reactive.Linq.Observable.Last``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
1205 <summary>
1206 Returns the last element of an observable sequence that matches the predicate.
1207 </summary>
1208 <param name="source">Source observable sequence.</param>
1209 <param name="predicate">A predicate function to evaluate for elements in the sequence.</param>
1210 <returns>The last element in the observable sequence for which the predicate holds.</returns>
1211 </member>
1212 <member name="M:System.Reactive.Linq.Observable.LastOrDefault``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
1213 <summary>
1214 Returns the last element of an observable sequence that matches the predicate, or a default value if no value is found.
1215 </summary>
1216 <param name="source">Source observable sequence.</param>
1217 <param name="predicate">A predicate function to evaluate for elements in the sequence.</param>
1218 <returns>The last element in the observable sequence, or a default value if no value is found.</returns>
1219 </member>
1220 <member name="M:System.Reactive.Linq.Observable.Single``1(System.IObservable{``0})">
1221 <summary>
1222 Returns the only element of an observable sequence and throws an exception if there is not exactly one element in the observable sequence.
1223 </summary>
1224 <param name="source">Source observable sequence.</param>
1225 <returns>The single element in the observable sequence.</returns>
1226 </member>
1227 <member name="M:System.Reactive.Linq.Observable.SingleOrDefault``1(System.IObservable{``0})">
1228 <summary>
1229 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.
1230 </summary>
1231 <param name="source">Source observable sequence.</param>
1232 <returns>The single element in the observable sequence, or a default value if no value is found.</returns>
1233 </member>
1234 <member name="M:System.Reactive.Linq.Observable.Single``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
1235 <summary>
1236 Returns the only element of an observable sequence that matches the predicate and throws an exception if there is not exactly one element in the observable sequence.
1237 </summary>
1238 <param name="source">Source observable sequence.</param>
1239 <param name="predicate">A predicate function to evaluate for elements in the sequence.</param>
1240 <returns>The single element in the observable sequence.</returns>
1241 </member>
1242 <member name="M:System.Reactive.Linq.Observable.SingleOrDefault``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
1243 <summary>
1244 Returns the only element of an observable sequence that matches the predicate, or a default value if no value is found; this method throws an exception if there is more than one element in the observable sequence.
1245 </summary>
1246 <param name="source">Source observable sequence.</param>
1247 <param name="predicate">A predicate function to evaluate for elements in the sequence.</param>
1248 <returns>The single element in the observable sequence, or a default value if no value is found.</returns>
1249 </member>
1250 <member name="M:System.Reactive.Linq.Observable.ForEach``1(System.IObservable{``0},System.Action{``0})">
1251 <summary>
1252 Invokes an action for each element in the observable sequence, and blocks until the sequence is terminated.
1253 </summary>
1254 <param name="source">Source sequence.</param>
1255 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
1256 <remarks>Because of its blocking nature, this operator is mainly used for testing.</remarks>
1257 </member>
1258 <member name="M:System.Reactive.Linq.Observable.ObserveOn``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
1259 <summary>
1260 Asynchronously notify observers on the specified scheduler.
1261 </summary>
1262 <param name="source">Source sequence.</param>
1263 <param name="scheduler">Scheduler to notify observers on.</param>
1264 <returns>The source sequence whose observations happen on the specified scheduler.</returns>
1265 </member>
1266 <member name="M:System.Reactive.Linq.Observable.SubscribeOn``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
1267 <summary>
1268 Asynchronously subscribes and unsubscribes observers on the specified scheduler.
1269 </summary>
1270 <param name="source">Source sequence.</param>
1271 <param name="scheduler">Scheduler to perform subscription and unsubscription actions on.</param>
1272 <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.</returns>
1273 </member>
1274 <member name="M:System.Reactive.Linq.Observable.SubscribeOn``1(System.IObservable{``0},System.Threading.SynchronizationContext)">
1275 <summary>
1276 Asynchronously subscribes and unsubscribes observers on the specified synchronization context.
1277 </summary>
1278 <param name="source">Source sequence.</param>
1279 <param name="context">Synchronization context to perform subscription and unsubscription actions on.</param>
1280 <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.</returns>
1281 </member>
1282 <member name="M:System.Reactive.Linq.Observable.ObserveOn``1(System.IObservable{``0},System.Threading.SynchronizationContext)">
1283 <summary>
1284 Asynchronously notify observers on the specified synchronization context.
1285 </summary>
1286 <param name="source">Source sequence.</param>
1287 <param name="context">Synchronization context to notify observers on.</param>
1288 <returns>The source sequence whose observations happen on the specified synchronization context.</returns>
1289 </member>
1290 <member name="M:System.Reactive.Linq.Observable.Synchronize``1(System.IObservable{``0})">
1291 <summary>
1292 Synchronizes the observable sequence.
1293 </summary>
1294 <param name="source">Source sequence.</param>
1295 <returns>The source sequence whose outgoing calls to observers are synchronized.</returns>
1296 </member>
1297 <member name="M:System.Reactive.Linq.Observable.Synchronize``1(System.IObservable{``0},System.Object)">
1298 <summary>
1299 Synchronizes the observable sequence.
1300 </summary>
1301 <param name="source">Source sequence.</param>
1302 <param name="gate">Gate object to synchronize each observer call on.</param>
1303 <returns>The source sequence whose outgoing calls to observers are synchronized on the given gate object.</returns>
1304 </member>
1305 <member name="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})">
1306 <summary>
1307 Exposes an observable sequence as an object with a .NET event.
1308 </summary>
1309 <param name="source">Observable source sequence.</param>
1310 <returns>The event source object.</returns>
1311 </member>
1312 <member name="M:System.Reactive.Linq.Observable.ToEvent``1(System.IObservable{``0})">
1313 <summary>
1314 Exposes an observable sequence as an object with a .NET event.
1315 </summary>
1316 <param name="source">Observable source sequence.</param>
1317 <returns>The event source object.</returns>
1318 </member>
1319 <member name="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})">
1320 <summary>
1321 Exposes an observable sequence as an object with a .NET event.
1322 </summary>
1323 <param name="source">Observable source sequence.</param>
1324 <returns>The event source object.</returns>
1325 </member>
1326 <member name="M:System.Reactive.Linq.Observable.Never``1">
1327 <summary>
1328 Returns a non-terminating observable sequence.
1329 </summary>
1330 <returns>Observable sequence whose observers will never get called.</returns>
1331 </member>
1332 <member name="M:System.Reactive.Linq.Observable.Empty``1">
1333 <summary>
1334 Returns an empty observable sequence.
1335 </summary>
1336 <returns>Observable sequence with no elements.</returns>
1337 </member>
1338 <member name="M:System.Reactive.Linq.Observable.Empty``1(System.Reactive.Concurrency.IScheduler)">
1339 <summary>
1340 Returns an empty observable sequence.
1341 </summary>
1342 <param name="scheduler">Scheduler to send the termination call on.</param>
1343 <returns>Observable sequence with no elements.</returns>
1344 </member>
1345 <member name="M:System.Reactive.Linq.Observable.Return``1(``0)">
1346 <summary>
1347 Returns an observable sequence that contains a single element.
1348 </summary>
1349 <param name="value">Single element in the resulting observable sequence.</param>
1350 <returns>Observable sequence containing the single specified element.</returns>
1351 </member>
1352 <member name="M:System.Reactive.Linq.Observable.Return``1(``0,System.Reactive.Concurrency.IScheduler)">
1353 <summary>
1354 Returns an observable sequence that contains a single value.
1355 </summary>
1356 <param name="value">Single element in the resulting observable sequence.</param>
1357 <param name="scheduler">Scheduler to send the single element on.</param>
1358 <returns>Observable sequence containing the single specified element.</returns>
1359 </member>
1360 <member name="M:System.Reactive.Linq.Observable.Throw``1(System.Exception)">
1361 <summary>
1362 Returns an observable sequence that terminates with an exception.
1363 </summary>
1364 <param name="exception">Exception object used for the sequence's termination.</param>
1365 <returns>The observable sequence that terminates exceptionally with the specified exception object.</returns>
1366 </member>
1367 <member name="M:System.Reactive.Linq.Observable.Throw``1(System.Exception,System.Reactive.Concurrency.IScheduler)">
1368 <summary>
1369 Returns an observable sequence that terminates with an exception.
1370 </summary>
1371 <param name="exception">Exception object used for the sequence's termination.</param>
1372 <param name="scheduler">Scheduler to send the exceptional termination call on.</param>
1373 <returns>The observable sequence that terminates exceptionally with the specified exception object.</returns>
1374 </member>
1375 <member name="M:System.Reactive.Linq.Observable.Subscribe``1(System.Collections.Generic.IEnumerable{``0},System.IObserver{``0})">
1376 <summary>
1377 Subscribes an observer to an enumerable sequence.
1378 </summary>
1379 <param name="source">Enumerable sequence to subscribe to.</param>
1380 <param name="observer">Observer that will receive notifications from the enumerable sequence.</param>
1381 <returns>Disposable object that can be used to unsubscribe the observer from the enumerable</returns>
1382 </member>
1383 <member name="M:System.Reactive.Linq.Observable.Subscribe``1(System.Collections.Generic.IEnumerable{``0},System.IObserver{``0},System.Reactive.Concurrency.IScheduler)">
1384 <summary>
1385 Subscribes an observer to an enumerable sequence.
1386 </summary>
1387 <param name="source">Enumerable sequence to subscribe to.</param>
1388 <param name="observer">Observer that will receive notifications from the enumerable sequence.</param>
1389 <param name="scheduler">Scheduler to perform the enumeration on.</param>
1390 <returns>Disposable object that can be used to unsubscribe the observer from the enumerable</returns>
1391 </member>
1392 <member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Action{System.EventHandler},System.Action{System.EventHandler})">
1393 <summary>
1394 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
1395 </summary>
1396 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1397 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1398 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1399 <seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
1400 </member>
1401 <member name="M:System.Reactive.Linq.Observable.FromEventPattern``2(System.Func{System.EventHandler{``1},``0},System.Action{``0},System.Action{``0})">
1402 <summary>
1403 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
1404 </summary>
1405 <param name="conversion">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.</param>
1406 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1407 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1408 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1409 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1410 </member>
1411 <member name="M:System.Reactive.Linq.Observable.FromEventPattern``2(System.Action{``0},System.Action{``0})">
1412 <summary>
1413 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
1414 </summary>
1415 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1416 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1417 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1418 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1419 </member>
1420 <member name="M:System.Reactive.Linq.Observable.FromEventPattern``1(System.Action{System.EventHandler{``0}},System.Action{System.EventHandler{``0}})">
1421 <summary>
1422 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
1423 </summary>
1424 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1425 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1426 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1427 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1428 </member>
1429 <member name="M:System.Reactive.Linq.Observable.FromEventPattern``1(System.Object,System.String)">
1430 <summary>
1431 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.
1432 </summary>
1433 <param name="target">Object instance that exposes the event to convert.</param>
1434 <param name="eventName">Name of the event to convert.</param>
1435 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1436 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1437 </member>
1438 <member name="M:System.Reactive.Linq.Observable.FromEventPattern``1(System.Type,System.String)">
1439 <summary>
1440 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event.
1441 </summary>
1442 <param name="type">Type that exposes the static event to convert.</param>
1443 <param name="eventName">Name of the event to convert.</param>
1444 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1445 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1446 </member>
1447 <member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Object,System.String)">
1448 <summary>
1449 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.
1450 </summary>
1451 <param name="target">Object instance that exposes the event to convert.</param>
1452 <param name="eventName">Name of the event to convert.</param>
1453 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1454 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1455 </member>
1456 <member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Type,System.String)">
1457 <summary>
1458 Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event.
1459 </summary>
1460 <param name="type">Type that exposes the static event to convert.</param>
1461 <param name="eventName">Name of the event to convert.</param>
1462 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1463 <seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
1464 </member>
1465 <member name="M:System.Reactive.Linq.Observable.FromEvent``2(System.Func{System.Action{``1},``0},System.Action{``0},System.Action{``0})">
1466 <summary>
1467 Converts a .NET event to an observable sequence.
1468 </summary>
1469 <param name="conversion">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.</param>
1470 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1471 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1472 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1473 <seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
1474 </member>
1475 <member name="M:System.Reactive.Linq.Observable.FromEvent``2(System.Action{``0},System.Action{``0})">
1476 <summary>
1477 Converts a .NET event to an observable sequence.
1478 </summary>
1479 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1480 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1481 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1482 <seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
1483 </member>
1484 <member name="M:System.Reactive.Linq.Observable.FromEvent``1(System.Action{System.Action{``0}},System.Action{System.Action{``0}})">
1485 <summary>
1486 Converts a .NET event to an observable sequence.
1487 </summary>
1488 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1489 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1490 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1491 <seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
1492 </member>
1493 <member name="M:System.Reactive.Linq.Observable.FromEvent(System.Action{System.Action},System.Action{System.Action})">
1494 <summary>
1495 Converts a .NET event to an observable sequence.
1496 </summary>
1497 <param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
1498 <param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
1499 <returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
1500 <seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
1501 </member>
1502 <member name="M:System.Reactive.Linq.Observable.Generate``2(``0,System.Func{``0,System.Boolean},System.Func{``0,``0},System.Func{``0,``1},System.Reactive.Concurrency.IScheduler)">
1503 <summary>
1504 Generates an observable sequence by iterating a state from an initial state until the condition fails.
1505 </summary>
1506 <param name="initialState">Initial state.</param>
1507 <param name="condition">Condition to terminate generation (upon returning false).</param>
1508 <param name="iterate">Iteration step function.</param>
1509 <param name="resultSelector">Selector function for results produced in the sequence.</param>
1510 <param name="scheduler">Scheduler on which to run the generator loop.</param>
1511 <returns>The generated sequence.</returns>
1512 </member>
1513 <member name="M:System.Reactive.Linq.Observable.Generate``2(``0,System.Func{``0,System.Boolean},System.Func{``0,``0},System.Func{``0,``1})">
1514 <summary>
1515 Generates an observable sequence by iterating a state from an initial state until the condition fails.
1516 </summary>
1517 <param name="initialState">Initial state.</param>
1518 <param name="condition">Condition to terminate generation (upon returning false).</param>
1519 <param name="iterate">Iteration step function.</param>
1520 <param name="resultSelector">Selector function for results produced in the sequence.</param>
1521 <returns>The generated sequence.</returns>
1522 </member>
1523 <member name="M:System.Reactive.Linq.Observable.Defer``1(System.Func{System.IObservable{``0}})">
1524 <summary>
1525 Returns an observable sequence that invokes the observableFactory function whenever a new observer subscribes.
1526 </summary>
1527 <param name="observableFactory">Observable factory function to invoke for each observer that subscribes to the resulting sequence.</param>
1528 <returns>Observable sequence whose observers trigger an invocation of the given observable factory function.</returns>
1529 </member>
1530 <member name="M:System.Reactive.Linq.Observable.Using``2(System.Func{``1},System.Func{``1,System.IObservable{``0}})">
1531 <summary>
1532 Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime.
1533 </summary>
1534 <param name="resourceFactory">Factory function to obtain a resource object.</param>
1535 <param name="observableFactory">Factory function to obtain an observable sequence that depends on the obtained resource.</param>
1536 <returns>Observable sequence whose lifetime controls the lifetime of the dependent resource object.</returns>
1537 </member>
1538 <member name="M:System.Reactive.Linq.Observable.ToObservable``1(System.Collections.Generic.IEnumerable{``0})">
1539 <summary>
1540 Converts an enumerable sequence to an observable sequence.
1541 </summary>
1542 <param name="source">Enumerable sequence to convert to an observable sequence.</param>
1543 <returns>The observable sequence whose elements are pulled from the given enumerable sequence.</returns>
1544 </member>
1545 <member name="M:System.Reactive.Linq.Observable.ToObservable``1(System.Collections.Generic.IEnumerable{``0},System.Reactive.Concurrency.IScheduler)">
1546 <summary>
1547 Converts an enumerable sequence to an observable sequence.
1548 </summary>
1549 <param name="source">Enumerable sequence to convert to an observable sequence.</param>
1550 <param name="scheduler">Scheduler to run the enumeration of the input sequence on.</param>
1551 <returns>The observable sequence whose elements are pulled from the given enumerable sequence.</returns>
1552 </member>
1553 <member name="M:System.Reactive.Linq.Observable.Create``1(System.Func{System.IObserver{``0},System.IDisposable})">
1554 <summary>
1555 Creates an observable sequence from a specified Subscribe method implementation.
1556 </summary>
1557 <param name="subscribe">Implementation of the resulting observable sequence's Subscribe method.</param>
1558 <returns>The observable sequence with the specified implementation for the Subscribe method.</returns>
1559 <remarks>Use of this operator is preferred over manual implementation of the IObservable&lt;T&gt; interface.</remarks>
1560 </member>
1561 <member name="M:System.Reactive.Linq.Observable.Create``1(System.Func{System.IObserver{``0},System.Action})">
1562 <summary>
1563 Creates an observable sequence from a specified Subscribe method implementation.
1564 </summary>
1565 <param name="subscribe">Implementation of the resulting observable sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.</param>
1566 <returns>The observable sequence with the specified implementation for the Subscribe method.</returns>
1567 <remarks>Use of this operator is preferred over manual implementation of the IObservable&lt;T&gt; interface.</remarks>
1568 </member>
1569 <member name="M:System.Reactive.Linq.Observable.Range(System.Int32,System.Int32)">
1570 <summary>
1571 Generates an observable sequence of integral numbers within a specified range.
1572 </summary>
1573 <param name="start">The value of the first integer in the sequence.</param>
1574 <param name="count">The number of sequential integers to generate.</param>
1575 <returns>An observable sequence that contains a range of sequential integral numbers.</returns>
1576 </member>
1577 <member name="M:System.Reactive.Linq.Observable.Range(System.Int32,System.Int32,System.Reactive.Concurrency.IScheduler)">
1578 <summary>
1579 Generates an observable sequence of integral numbers within a specified range.
1580 </summary>
1581 <param name="start">The value of the first integer in the sequence.</param>
1582 <param name="count">The number of sequential integers to generate.</param>
1583 <param name="scheduler">Scheduler to run the generator loop on.</param>
1584 <returns>An observable sequence that contains a range of sequential integral numbers.</returns>
1585 </member>
1586 <member name="M:System.Reactive.Linq.Observable.Repeat``1(System.IObservable{``0})">
1587 <summary>
1588 Repeats the observable sequence indefinitely.
1589 </summary>
1590 <param name="source">Observable sequence to repeat.</param>
1591 <returns>The observable sequence producing the elements of the given sequence repeatedly and sequentially.</returns>
1592 </member>
1593 <member name="M:System.Reactive.Linq.Observable.Repeat``1(System.IObservable{``0},System.Int32)">
1594 <summary>
1595 Repeats the observable sequence a specified number of times.
1596 </summary>
1597 <param name="source">Observable sequence to repeat.</param>
1598 <param name="repeatCount">Number of times to repeat the sequence.</param>
1599 <returns>The observable sequence producing the elements of the given sequence repeatedly.</returns>
1600 </member>
1601 <member name="M:System.Reactive.Linq.Observable.Retry``1(System.IObservable{``0})">
1602 <summary>
1603 Repeats the source observable sequence until it successfully terminates.
1604 </summary>
1605 <param name="source">Observable sequence to repeat until it successfully terminates.</param>
1606 <returns>Observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.</returns>
1607 </member>
1608 <member name="M:System.Reactive.Linq.Observable.Retry``1(System.IObservable{``0},System.Int32)">
1609 <summary>
1610 Repeats the source observable sequence the specified number of times or until it successfully terminates.
1611 </summary>
1612 <param name="source">Observable sequence to repeat until it successfully terminates.</param>
1613 <param name="retryCount">Number of times to repeat the sequence.</param>
1614 <returns>Observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.</returns>
1615 </member>
1616 <member name="M:System.Reactive.Linq.Observable.Repeat``1(``0,System.Reactive.Concurrency.IScheduler)">
1617 <summary>
1618 Generates an observable sequence that repeats the given element infinitely.
1619 </summary>
1620 <param name="value">Element to repeat.</param>
1621 <param name="scheduler">Scheduler to run the producer loop on.</param>
1622 <returns>An observable sequence that repeats the given element infinitely.</returns>
1623 </member>
1624 <member name="M:System.Reactive.Linq.Observable.Repeat``1(``0,System.Int32,System.Reactive.Concurrency.IScheduler)">
1625 <summary>
1626 Generates an observable sequence that repeats the given element the specified number of times.
1627 </summary>
1628 <param name="value">Element to repeat.</param>
1629 <param name="repeatCount">Number of times to repeat the element.</param>
1630 <param name="scheduler">Scheduler to run the producer loop on.</param>
1631 <returns>An observable sequence that repeats the given element the specified number of times.</returns>
1632 </member>
1633 <member name="M:System.Reactive.Linq.Observable.Repeat``1(``0)">
1634 <summary>
1635 Generates an observable sequence that repeats the given element infinitely.
1636 </summary>
1637 <param name="value">Element to repeat.</param>
1638 <returns>An observable sequence that repeats the given element infinitely.</returns>
1639 </member>
1640 <member name="M:System.Reactive.Linq.Observable.Repeat``1(``0,System.Int32)">
1641 <summary>
1642 Generates an observable sequence that repeats the given element the specified number of times.
1643 </summary>
1644 <param name="value">Element to repeat.</param>
1645 <param name="repeatCount">Number of times to repeat the element.</param>
1646 <returns>An observable sequence that repeats the given element the specified number of times.</returns>
1647 </member>
1648 <member name="M:System.Reactive.Linq.Observable.And``2(System.IObservable{``0},System.IObservable{``1})">
1649 <summary>
1650 Matches when both observable sequences have an available value.
1651 </summary>
1652 </member>
1653 <member name="M:System.Reactive.Linq.Observable.Then``2(System.IObservable{``0},System.Func{``0,``1})">
1654 <summary>
1655 Matches when the observable sequence has an available value and projects the value.
1656 </summary>
1657 </member>
1658 <member name="M:System.Reactive.Linq.Observable.When``1(System.Reactive.Joins.Plan{``0}[])">
1659 <summary>
1660 Joins together the results from several patterns.
1661 </summary>
1662 </member>
1663 <member name="M:System.Reactive.Linq.Observable.When``1(System.Collections.Generic.IEnumerable{System.Reactive.Joins.Plan{``0}})">
1664 <summary>
1665 Joins together the results from several patterns.
1666 </summary>
1667 </member>
1668 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.IObservable{System.IObservable{``0}})">
1669 <summary>
1670 Merges an observable sequence of observable sequences into an observable sequence.
1671 </summary>
1672 <param name="sources">Observable sequence of inner observable sequences.</param>
1673 <returns>The observable sequence that merges the elements of the inner sequences.</returns>
1674 </member>
1675 <member name="M:System.Reactive.Linq.Observable.Switch``1(System.IObservable{System.IObservable{``0}})">
1676 <summary>
1677 Transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.
1678 </summary>
1679 <param name="sources">Observable sequence of inner observable sequences.</param>
1680 <returns>The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received.</returns>
1681 </member>
1682 <member name="M:System.Reactive.Linq.Observable.Concat``1(System.IObservable{``0},System.IObservable{``0})">
1683 <summary>
1684 Concatenates two observable sequences.
1685 </summary>
1686 <param name="first">First observable sequence.</param>
1687 <param name="second">Second observable sequence.</param>
1688 <returns>An observable sequence that contains the elements of the first sequence, followed by those of the second the sequence.</returns>
1689 </member>
1690 <member name="M:System.Reactive.Linq.Observable.Concat``1(System.IObservable{``0}[])">
1691 <summary>
1692 Concatenates all the observable sequences.
1693 </summary>
1694 <param name="sources">Observable sequences to concatenate.</param>
1695 <returns>An observable sequence that contains the elements of each given sequence, in sequential order.</returns>
1696 </member>
1697 <member name="M:System.Reactive.Linq.Observable.Concat``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}})">
1698 <summary>
1699 Concatenates an enumerable sequence of observable sequences.
1700 </summary>
1701 <param name="sources">Observable sequences to concatenate.</param>
1702 <returns>An observable sequence that contains the elements of each given sequence, in sequential order.</returns>
1703 </member>
1704 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}},System.Int32,System.Reactive.Concurrency.IScheduler)">
1705 <summary>
1706 Merges an enumerable sequence of observable sequences into an observable sequence, limiting the number of concurrent subscriptions to inner sequences.
1707 </summary>
1708 <param name="sources">Enumerable sequence of observable sequences.</param>
1709 <param name="maxConcurrent">Maximum number of observable sequences being subscribed to concurrently.</param>
1710 <param name="scheduler">Scheduler to run the enumeration of the sequence of sources on.</param>
1711 <returns>The observable sequence that merges the elements of the observable sequences.</returns>
1712 </member>
1713 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}},System.Int32)">
1714 <summary>
1715 Merges an enumerable sequence of observable sequences into an observable sequence, limiting the number of concurrent subscriptions to inner sequences.
1716 </summary>
1717 <param name="sources">Enumerable sequence of observable sequences.</param>
1718 <param name="maxConcurrent">Maximum number of observable sequences being subscribed to concurrently.</param>
1719 <returns>The observable sequence that merges the elements of the observable sequences.</returns>
1720 </member>
1721 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.IObservable{System.IObservable{``0}},System.Int32)">
1722 <summary>
1723 Merges an observable sequence of observable sequences into an observable sequence, limiting the number of concurrent subscriptions to inner sequences.
1724 </summary>
1725 <param name="sources">Observable sequence of inner observable sequences.</param>
1726 <param name="maxConcurrent">Maximum number of inner observable sequences being subscribed to concurrently.</param>
1727 <returns>The observable sequence that merges the elements of the inner sequences.</returns>
1728 </member>
1729 <member name="M:System.Reactive.Linq.Observable.Concat``1(System.IObservable{System.IObservable{``0}})">
1730 <summary>
1731 Concatenates an observable sequence of observable sequences.
1732 </summary>
1733 <param name="sources">Observable sequence of inner observable sequences.</param>
1734 <returns>An observable sequence that contains the elements of each observed inner sequence, in sequential order.</returns>
1735 </member>
1736 <member name="M:System.Reactive.Linq.Observable.Catch``2(System.IObservable{``0},System.Func{``1,System.IObservable{``0}})">
1737 <summary>
1738 Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler.
1739 </summary>
1740 <param name="source">Source sequence.</param>
1741 <param name="handler">Exception handler function, producing another observable sequence.</param>
1742 <returns>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.</returns>
1743 </member>
1744 <member name="M:System.Reactive.Linq.Observable.Catch``1(System.IObservable{``0},System.IObservable{``0})">
1745 <summary>
1746 Continues an observable sequence that is terminated by an exception with the next observable sequence.
1747 </summary>
1748 <param name="first">First observable sequence whose exception (if any) is caught.</param>
1749 <param name="second">Second observable sequence used to produce results when an error occurred in the first sequence.</param>
1750 <returns>An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred.</returns>
1751 </member>
1752 <member name="M:System.Reactive.Linq.Observable.Catch``1(System.IObservable{``0}[])">
1753 <summary>
1754 Continues an observable sequence that is terminated by an exception with the next observable sequence.
1755 </summary>
1756 <param name="sources">Observable sequences to catch exceptions for.</param>
1757 <returns>An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.</returns>
1758 </member>
1759 <member name="M:System.Reactive.Linq.Observable.Catch``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}})">
1760 <summary>
1761 Continues an observable sequence that is terminated by an exception with the next observable sequence.
1762 </summary>
1763 <param name="sources">Observable sequences to catch exceptions for.</param>
1764 <returns>An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.</returns>
1765 </member>
1766 <member name="M:System.Reactive.Linq.Observable.OnErrorResumeNext``1(System.IObservable{``0},System.IObservable{``0})">
1767 <summary>
1768 Continues an observable sequence that is terminated normally or by an exception with the next observable sequence.
1769 </summary>
1770 <param name="first">First observable sequence whose exception (if any) is caught.</param>
1771 <param name="second">Second observable sequence used to produce results after the first sequence terminates.</param>
1772 <returns>An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally.</returns>
1773 </member>
1774 <member name="M:System.Reactive.Linq.Observable.OnErrorResumeNext``1(System.IObservable{``0}[])">
1775 <summary>
1776 Continues an observable sequence that is terminated normally or by an exception with the next observable sequence.
1777 </summary>
1778 <param name="sources">Observable sequences to concatenate.</param>
1779 <returns>An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.</returns>
1780 </member>
1781 <member name="M:System.Reactive.Linq.Observable.OnErrorResumeNext``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}})">
1782 <summary>
1783 Continues an observable sequence that is terminated normally or by an exception with the next observable sequence.
1784 </summary>
1785 <param name="sources">Observable sequences to concatenate.</param>
1786 <returns>An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.</returns>
1787 </member>
1788 <member name="M:System.Reactive.Linq.Observable.Zip``3(System.IObservable{``0},System.IObservable{``1},System.Func{``0,``1,``2})">
1789 <summary>
1790 Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion.
1791 </summary>
1792 <param name="first">First observable source.</param>
1793 <param name="second">Second observable source.</param>
1794 <param name="resultSelector">Function to invoke for each consecutive pair of elements from the first and second source.</param>
1795 <returns>An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.</returns>
1796 </member>
1797 <member name="M:System.Reactive.Linq.Observable.Zip``3(System.IObservable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})">
1798 <summary>
1799 Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function.
1800 </summary>
1801 <param name="first">First observable source.</param>
1802 <param name="second">Second enumerable source.</param>
1803 <param name="resultSelector">Function to invoke for each consecutive pair of elements from the first and second source.</param>
1804 <returns>An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.</returns>
1805 </member>
1806 <member name="M:System.Reactive.Linq.Observable.CombineLatest``3(System.IObservable{``0},System.IObservable{``1},System.Func{``0,``1,``2})">
1807 <summary>
1808 Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element.
1809 </summary>
1810 <param name="first">First observable source.</param>
1811 <param name="second">Second observable source.</param>
1812 <param name="resultSelector">Function to invoke whenever either of the sources produces an element.</param>
1813 <returns>An observable sequence containing the result of combining elements of both sources using the specified result selector function.</returns>
1814 </member>
1815 <member name="M:System.Reactive.Linq.Observable.Amb``1(System.IObservable{``0},System.IObservable{``0})">
1816 <summary>
1817 Propagates the observable sequence that reacts first.
1818 </summary>
1819 <param name="first">First observable sequence.</param>
1820 <param name="second">Second observable sequence.</param>
1821 <returns>An observable sequence that surfaces either of the given sequences, whichever reacted first.</returns>
1822 </member>
1823 <member name="M:System.Reactive.Linq.Observable.Amb``1(System.IObservable{``0}[])">
1824 <summary>
1825 Propagates the observable sequence that reacts first.
1826 </summary>
1827 <param name="sources">Observable sources competing to react first.</param>
1828 <returns>An observable sequence that surfaces any of the given sequences, whichever reacted first.</returns>
1829 </member>
1830 <member name="M:System.Reactive.Linq.Observable.Amb``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}})">
1831 <summary>
1832 Propagates the observable sequence that reacts first.
1833 </summary>
1834 <param name="sources">Observable sources competing to react first.</param>
1835 <returns>An observable sequence that surfaces any of the given sequences, whichever reacted first.</returns>
1836 </member>
1837 <member name="M:System.Reactive.Linq.Observable.TakeUntil``2(System.IObservable{``0},System.IObservable{``1})">
1838 <summary>
1839 Returns the values from the source observable sequence until the other observable sequence produces a value.
1840 </summary>
1841 <param name="source">Source sequence to propagate elements for.</param>
1842 <param name="other">Observable sequence that terminates propagation of elements of the source sequence.</param>
1843 <returns>An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation.</returns>
1844 </member>
1845 <member name="M:System.Reactive.Linq.Observable.SkipUntil``2(System.IObservable{``0},System.IObservable{``1})">
1846 <summary>
1847 Returns the values from the source observable sequence only after the other observable sequence produces a value.
1848 </summary>
1849 <param name="source">Source sequence to propagate elements for.</param>
1850 <param name="other">Observable sequence that triggers propagation of elements of the source sequence.</param>
1851 <returns>An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.</returns>
1852 </member>
1853 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.IObservable{``0},System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
1854 <summary>
1855 Merges two observable sequences into a single observable sequence.
1856 </summary>
1857 <param name="first">First observable sequence.</param>
1858 <param name="second">Second observable sequence.</param>
1859 <param name="scheduler">Scheduler used to introduce concurrency for making subscriptions to the given sequences.</param>
1860 <returns>The observable sequence that merges the elements of the given sequences.</returns>
1861 </member>
1862 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.IObservable{``0},System.IObservable{``0})">
1863 <summary>
1864 Merges two observable sequences into a single observable sequence.
1865 </summary>
1866 <param name="first">First observable sequence.</param>
1867 <param name="second">Second observable sequence.</param>
1868 <returns>The observable sequence that merges the elements of the given sequences.</returns>
1869 </member>
1870 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.IObservable{``0}[])">
1871 <summary>
1872 Merges all the observable sequences into a single observable sequence.
1873 </summary>
1874 <param name="sources">Observable sequences.</param>
1875 <returns>The observable sequence that merges the elements of the observable sequences.</returns>
1876 </member>
1877 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.Reactive.Concurrency.IScheduler,System.IObservable{``0}[])">
1878 <summary>
1879 Merges all the observable sequences into a single observable sequence.
1880 </summary>
1881 <param name="sources">Observable sequences.</param>
1882 <param name="scheduler">Scheduler to run the enumeration of the sequence of sources on.</param>
1883 <returns>The observable sequence that merges the elements of the observable sequences.</returns>
1884 </member>
1885 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}})">
1886 <summary>
1887 Merges an enumerable sequence of observable sequences into a single observable sequence.
1888 </summary>
1889 <param name="sources">Enumerable sequence of observable sequences.</param>
1890 <returns>The observable sequence that merges the elements of the observable sequences.</returns>
1891 </member>
1892 <member name="M:System.Reactive.Linq.Observable.Merge``1(System.Collections.Generic.IEnumerable{System.IObservable{``0}},System.Reactive.Concurrency.IScheduler)">
1893 <summary>
1894 Merges an enumerable sequence of observable sequences into a single observable sequence.
1895 </summary>
1896 <param name="sources">Enumerable sequence of observable sequences.</param>
1897 <param name="scheduler">Scheduler to run the enumeration of the sequence of sources on.</param>
1898 <returns>The observable sequence that merges the elements of the observable sequences.</returns>
1899 </member>
1900 <member name="M:System.Reactive.Linq.Observable.Window``3(System.IObservable{``0},System.IObservable{``1},System.Func{``1,System.IObservable{``2}})">
1901 <summary>
1902 Projects each element of an observable sequence into zero or more windows.
1903 </summary>
1904 <param name="source">Source sequence to produce windows over.</param>
1905 <param name="windowOpenings">Observable sequence whose elements denote the creation of new windows.</param>
1906 <param name="windowClosingSelector">A function invoked to define the closing of each produced window.</param>
1907 <returns>An observable sequence of windows.</returns>
1908 </member>
1909 <member name="M:System.Reactive.Linq.Observable.Window``2(System.IObservable{``0},System.Func{System.IObservable{``1}})">
1910 <summary>
1911 Projects each element of an observable sequence into consecutive non-overlapping windows.
1912 </summary>
1913 <param name="source">Source sequence to produce windows over.</param>
1914 <param name="windowClosingSelector">A function invoked to define the boundaries of the produced windows. A new window is started when the previous one is closed.</param>
1915 <returns>An observable sequence of windows.</returns>
1916 </member>
1917 <member name="M:System.Reactive.Linq.Observable.Buffer``3(System.IObservable{``0},System.IObservable{``1},System.Func{``1,System.IObservable{``2}})">
1918 <summary>
1919 Projects each element of an observable sequence into zero or more buffers.
1920 </summary>
1921 <param name="source">Source sequence to produce buffers over.</param>
1922 <param name="bufferOpenings">Observable sequence whose elements denote the creation of new buffers.</param>
1923 <param name="bufferClosingSelector">A function invoked to define the closing of each produced buffer.</param>
1924 <returns>An observable sequence of buffers.</returns>
1925 </member>
1926 <member name="M:System.Reactive.Linq.Observable.Buffer``2(System.IObservable{``0},System.Func{System.IObservable{``1}})">
1927 <summary>
1928 Projects each element of an observable sequence into consecutive non-overlapping buffers.
1929 </summary>
1930 <param name="source">Source sequence to produce buffers over.</param>
1931 <param name="bufferClosingSelector">A function invoked to define the boundaries of the produced buffers. A new buffer is started when the previous one is closed.</param>
1932 <returns>An observable sequence of buffers.</returns>
1933 </member>
1934 <member name="M:System.Reactive.Linq.Observable.Materialize``1(System.IObservable{``0})">
1935 <summary>
1936 Materializes the implicit notifications of an observable sequence as explicit notification values.
1937 </summary>
1938 <param name="source">An observable sequence to get notification values for.</param>
1939 <returns>An observable sequence containing the materialized notification values from the source sequence.</returns>
1940 </member>
1941 <member name="M:System.Reactive.Linq.Observable.Dematerialize``1(System.IObservable{System.Reactive.Notification{``0}})">
1942 <summary>
1943 Dematerializes the explicit notification values of an observable sequence as implicit notifications.
1944 </summary>
1945 <param name="source">An observable sequence containing explicit notification values which have to be turned into implicit notifications.</param>
1946 <returns>An observable sequence exhibiting the behavior corresponding to the source sequence's notification values.</returns>
1947 </member>
1948 <member name="M:System.Reactive.Linq.Observable.AsObservable``1(System.IObservable{``0})">
1949 <summary>
1950 Hides the identity of an observable sequence.
1951 </summary>
1952 <param name="source">An observable sequence whose identity to hide.</param>
1953 <returns>An observable sequence that hides the identity of the source sequence.</returns>
1954 </member>
1955 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.Int32,System.Int32)">
1956 <summary>
1957 Projects each element of an observable sequence into zero or more windows which are produced based on element count information.
1958 </summary>
1959 <param name="source">Source sequence to produce windows over.</param>
1960 <param name="count">Length of each window.</param>
1961 <param name="skip">Number of elements to skip between creation of consecutive windows.</param>
1962 <returns>An observable sequence of windows.</returns>
1963 </member>
1964 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.Int32)">
1965 <summary>
1966 Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information.
1967 </summary>
1968 <param name="source">Source sequence to produce windows over.</param>
1969 <param name="count">Length of each window.</param>
1970 <returns>An observable sequence of windows.</returns>
1971 </member>
1972 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.Int32,System.Int32)">
1973 <summary>
1974 Projects each element of an observable sequence into zero or more buffers which are produced based on element count information.
1975 </summary>
1976 <param name="source">Source sequence to produce buffers over.</param>
1977 <param name="count">Length of each buffer.</param>
1978 <param name="skip">Number of elements to skip between creation of consecutive buffers.</param>
1979 <returns>An observable sequence of buffers.</returns>
1980 </member>
1981 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.Int32)">
1982 <summary>
1983 Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information.
1984 </summary>
1985 <param name="source">Source sequence to produce buffers over.</param>
1986 <param name="count">Length of each buffer.</param>
1987 <returns>An observable sequence of buffers.</returns>
1988 </member>
1989 <member name="M:System.Reactive.Linq.Observable.StartWith``1(System.IObservable{``0},``0[])">
1990 <summary>
1991 Prepends a sequence of values to an observable sequence.
1992 </summary>
1993 <param name="source">Source sequence to prepend values to.</param>
1994 <param name="values">Values to prepend to the specified sequence.</param>
1995 <returns>The source sequence prepended with the specified values.</returns>
1996 </member>
1997 <member name="M:System.Reactive.Linq.Observable.StartWith``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler,``0[])">
1998 <summary>
1999 Prepends a sequence of values to an observable sequence.
2000 </summary>
2001 <param name="source">Source sequence to prepend values to.</param>
2002 <param name="scheduler">Scheduler to emit the prepended values on.</param>
2003 <param name="values">Values to prepend to the specified sequence.</param>
2004 <returns>The source sequence prepended with the specified values.</returns>
2005 </member>
2006 <member name="M:System.Reactive.Linq.Observable.Scan``2(System.IObservable{``0},``1,System.Func{``1,``0,``1})">
2007 <summary>
2008 Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value.
2009 </summary>
2010 <param name="source">An observable sequence to accumulate over.</param>
2011 <param name="seed">The initial accumulator value.</param>
2012 <param name="accumulator">An accumulator function to be invoked on each element.</param>
2013 <returns>An observable sequence containing the accumulated values.</returns>
2014 </member>
2015 <member name="M:System.Reactive.Linq.Observable.Scan``1(System.IObservable{``0},System.Func{``0,``0,``0})">
2016 <summary>
2017 Applies an accumulator function over an observable sequence and returns each intermediate result.
2018 </summary>
2019 <param name="source">An observable sequence to accumulate over.</param>
2020 <param name="accumulator">An accumulator function to be invoked on each element.</param>
2021 <returns>An observable sequence containing the accumulated values.</returns>
2022 </member>
2023 <member name="M:System.Reactive.Linq.Observable.DistinctUntilChanged``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2024 <summary>
2025 Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer.
2026 </summary>
2027 <param name="source">An observable sequence to retain distinct contiguous elements for, based on a computed key value.</param>
2028 <param name="keySelector">A function to compute the comparison key for each element.</param>
2029 <param name="comparer">Equality comparer for computed key values.</param>
2030 <returns>An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.</returns>
2031 </member>
2032 <member name="M:System.Reactive.Linq.Observable.DistinctUntilChanged``1(System.IObservable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2033 <summary>
2034 Returns an observable sequence that contains only distinct contiguous elements according to the comparer.
2035 </summary>
2036 <param name="source">An observable sequence to retain distinct contiguous elements for.</param>
2037 <param name="comparer">Equality comparer for source elements.</param>
2038 <returns>An observable sequence only containing the distinct contiguous elements from the source sequence.</returns>
2039 </member>
2040 <member name="M:System.Reactive.Linq.Observable.DistinctUntilChanged``2(System.IObservable{``0},System.Func{``0,``1})">
2041 <summary>
2042 Returns an observable sequence that contains only distinct contiguous elements according to the keySelector.
2043 </summary>
2044 <param name="source">An observable sequence to retain distinct contiguous elements for, based on a computed key value.</param>
2045 <param name="keySelector">A function to compute the comparison key for each element.</param>
2046 <returns>An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.</returns>
2047 </member>
2048 <member name="M:System.Reactive.Linq.Observable.DistinctUntilChanged``1(System.IObservable{``0})">
2049 <summary>
2050 Returns an observable sequence that contains only distinct contiguous elements.
2051 </summary>
2052 <param name="source">An observable sequence to retain distinct contiguous elements for.</param>
2053 <returns>An observable sequence only containing the distinct contiguous elements from the source sequence.</returns>
2054 </member>
2055 <member name="M:System.Reactive.Linq.Observable.Distinct``1(System.IObservable{``0})">
2056 <summary>
2057 Returns an observable sequence that contains only distinct elements.
2058 </summary>
2059 <param name="source">An observable sequence to retain distinct elements for.</param>
2060 <returns>An observable sequence only containing the distinct elements from the source sequence.</returns>
2061 </member>
2062 <member name="M:System.Reactive.Linq.Observable.Distinct``1(System.IObservable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2063 <summary>
2064 Returns an observable sequence that contains only distinct elements according to the comparer.
2065 </summary>
2066 <param name="source">An observable sequence to retain distinct elements for.</param>
2067 <param name="comparer">Equality comparer for source elements.</param>
2068 <returns>An observable sequence only containing the distinct elements from the source sequence.</returns>
2069 </member>
2070 <member name="M:System.Reactive.Linq.Observable.Distinct``2(System.IObservable{``0},System.Func{``0,``1})">
2071 <summary>
2072 Returns an observable sequence that contains only distinct elements according to the keySelector.
2073 </summary>
2074 <param name="source">An observable sequence to retain distinct elements for.</param>
2075 <param name="keySelector">A function to compute the comparison key for each element.</param>
2076 <returns>An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.</returns>
2077 </member>
2078 <member name="M:System.Reactive.Linq.Observable.Distinct``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2079 <summary>
2080 Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer.
2081 </summary>
2082 <param name="source">An observable sequence to retain distinct elements for.</param>
2083 <param name="keySelector">A function to compute the comparison key for each element.</param>
2084 <param name="comparer">Equality comparer for source elements.</param>
2085 <returns>An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.</returns>
2086 </member>
2087 <member name="M:System.Reactive.Linq.Observable.Finally``1(System.IObservable{``0},System.Action)">
2088 <summary>
2089 Invokes a specified action after source observable sequence terminates normally or by an exception.
2090 </summary>
2091 <param name="source">Source sequence.</param>
2092 <param name="finallyAction">Action to invoke after the source observable sequence terminates.</param>
2093 <returns>Source sequence with the action-invoking termination behavior applied.</returns>
2094 </member>
2095 <member name="M:System.Reactive.Linq.Observable.Do``1(System.IObservable{``0},System.Action{``0})">
2096 <summary>
2097 Invokes an action for each element in the observable sequence.
2098 </summary>
2099 <param name="source">Source sequence.</param>
2100 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
2101 <returns>The source sequence with the side-effecting behavior applied.</returns>
2102 </member>
2103 <member name="M:System.Reactive.Linq.Observable.Do``1(System.IObservable{``0},System.Action{``0},System.Action)">
2104 <summary>
2105 Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence.
2106 </summary>
2107 <param name="source">Source sequence.</param>
2108 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
2109 <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
2110 <returns>The source sequence with the side-effecting behavior applied.</returns>
2111 </member>
2112 <member name="M:System.Reactive.Linq.Observable.Do``1(System.IObservable{``0},System.Action{``0},System.Action{System.Exception})">
2113 <summary>
2114 Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence.
2115 </summary>
2116 <param name="source">Source sequence.</param>
2117 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
2118 <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
2119 <returns>The source sequence with the side-effecting behavior applied.</returns>
2120 </member>
2121 <member name="M:System.Reactive.Linq.Observable.Do``1(System.IObservable{``0},System.Action{``0},System.Action{System.Exception},System.Action)">
2122 <summary>
2123 Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence.
2124 </summary>
2125 <param name="source">Source sequence.</param>
2126 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
2127 <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
2128 <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
2129 <returns>The source sequence with the side-effecting behavior applied.</returns>
2130 </member>
2131 <member name="M:System.Reactive.Linq.Observable.Do``1(System.IObservable{``0},System.IObserver{``0})">
2132 <summary>
2133 Invokes the observer's methods for their side-effects.
2134 </summary>
2135 <param name="source">Source sequence.</param>
2136 <param name="observer">Observer whose methods to invoke as part of the source sequence's observation.</param>
2137 <returns>The source sequence with the side-effecting behavior applied.</returns>
2138 </member>
2139 <member name="M:System.Reactive.Linq.Observable.SkipLast``1(System.IObservable{``0},System.Int32)">
2140 <summary>
2141 Bypasses a specified number of elements at the end of an observable sequence.
2142 </summary>
2143 <param name="source">Source sequence.</param>
2144 <param name="count">Number of elements to bypass at the end of the source sequence.</param>
2145 <returns>An observable sequence containing the source sequence elements except for the bypassed ones at the end.</returns>
2146 </member>
2147 <member name="M:System.Reactive.Linq.Observable.TakeLast``1(System.IObservable{``0},System.Int32)">
2148 <summary>
2149 Returns a specified number of contiguous elements from the end of an observable sequence.
2150 </summary>
2151 <param name="source">Source sequence.</param>
2152 <param name="count">Number of elements to take from the end of the source sequence.</param>
2153 <returns>An observable sequence containing the specified number of elements from the of the source sequence.</returns>
2154 </member>
2155 <member name="M:System.Reactive.Linq.Observable.IgnoreElements``1(System.IObservable{``0})">
2156 <summary>
2157 Ignores all values in an observable sequence leaving only the termination messages.
2158 </summary>
2159 <param name="source">Source sequence.</param>
2160 <returns>An empty observable sequence that signals termination, successful or exceptional, of the source sequence.</returns>
2161 </member>
2162 <member name="M:System.Reactive.Linq.Observable.ElementAt``1(System.IObservable{``0},System.Int32)">
2163 <summary>
2164 Returns the element at a specified index in a sequence.
2165 </summary>
2166 <param name="source">Observable sequence to return the element from.</param>
2167 <param name="index">The zero-based index of the element to retrieve.</param>
2168 <returns>An observable sequence that produces the element at the specified position in the source sequence.</returns>
2169 </member>
2170 <member name="M:System.Reactive.Linq.Observable.ElementAtOrDefault``1(System.IObservable{``0},System.Int32)">
2171 <summary>
2172 Returns the element at a specified index in a sequence or a default value if the index is out of range.
2173 </summary>
2174 <param name="source">Observable sequence to return the element from.</param>
2175 <param name="index">The zero-based index of the element to retrieve.</param>
2176 <returns>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.</returns>
2177 </member>
2178 <member name="M:System.Reactive.Linq.Observable.DefaultIfEmpty``1(System.IObservable{``0})">
2179 <summary>
2180 Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.
2181 </summary>
2182 <param name="source">The sequence to return a default value for if it is empty.</param>
2183 <returns>An observable sequence that contains the default value for the TSource type if the source is empty; otherwise, the elements of the source itself.</returns>
2184 </member>
2185 <member name="M:System.Reactive.Linq.Observable.DefaultIfEmpty``1(System.IObservable{``0},``0)">
2186 <summary>
2187 Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty.
2188 </summary>
2189 <param name="source">The sequence to return the specified value for if it is empty.</param>
2190 <param name="defaultValue">The value to return if the sequence is empty.</param>
2191 <returns>An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself.</returns>
2192 </member>
2193 <member name="M:System.Reactive.Linq.Observable.Select``2(System.IObservable{``0},System.Func{``0,``1})">
2194 <summary>
2195 Projects each element of an observable sequence into a new form.
2196 </summary>
2197 <param name="source">A sequence of elements to invoke a transform function on.</param>
2198 <param name="selector">A transform function to apply to each source element.</param>
2199 <returns>An observable sequence whose elements are the result of invoking the transform function on each element of source.</returns>
2200 </member>
2201 <member name="M:System.Reactive.Linq.Observable.Select``2(System.IObservable{``0},System.Func{``0,System.Int32,``1})">
2202 <summary>
2203 Projects each element of an observable sequence into a new form by incorporating the element's index.
2204 </summary>
2205 <param name="source">A sequence of elements to invoke a transform function on.</param>
2206 <param name="selector">A transform function to apply to each source element; the second parameter of the function represents the index of the source element.</param>
2207 <returns>An observable sequence whose elements are the result of invoking the transform function on each element of source.</returns>
2208 </member>
2209 <member name="M:System.Reactive.Linq.Observable.Where``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
2210 <summary>
2211 Filters the elements of an observable sequence based on a predicate.
2212 </summary>
2213 <param name="source">An observable sequence whose elements to filter.</param>
2214 <param name="predicate">A function to test each source element for a condition.</param>
2215 <returns>An observable sequence that contains elements from the input sequence that satisfy the condition.</returns>
2216 </member>
2217 <member name="M:System.Reactive.Linq.Observable.Where``1(System.IObservable{``0},System.Func{``0,System.Int32,System.Boolean})">
2218 <summary>
2219 Filters the elements of an observable sequence based on a predicate by incorporating the element's index.
2220 </summary>
2221 <param name="source">An observable sequence whose elements to filter.</param>
2222 <param name="predicate">A function to test each source element for a conditio; the second parameter of the function represents the index of the source element.</param>
2223 <returns>An observable sequence that contains elements from the input sequence that satisfy the condition.</returns>
2224 </member>
2225 <member name="M:System.Reactive.Linq.Observable.GroupBy``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2})">
2226 <summary>
2227 Groups the elements of an observable sequence and selects the resulting elements by using a specified function.
2228 </summary>
2229 <param name="source">An observable sequence whose elements to group.</param>
2230 <param name="keySelector">A function to extract the key for each element.</param>
2231 <param name="elementSelector">A function to map each source element to an element in an observable group.</param>
2232 <returns>A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.</returns>
2233 </member>
2234 <member name="M:System.Reactive.Linq.Observable.GroupBy``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2235 <summary>
2236 Groups the elements of an observable sequence according to a specified key selector function and comparer.
2237 </summary>
2238 <param name="source">An observable sequence whose elements to group.</param>
2239 <param name="keySelector">A function to extract the key for each element.</param>
2240 <param name="comparer">An equality comparer to compare keys with.</param>
2241 <returns>A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.</returns>
2242 </member>
2243 <member name="M:System.Reactive.Linq.Observable.GroupBy``2(System.IObservable{``0},System.Func{``0,``1})">
2244 <summary>
2245 Groups the elements of an observable sequence according to a specified key selector function.
2246 </summary>
2247 <param name="source">An observable sequence whose elements to group.</param>
2248 <param name="keySelector">A function to extract the key for each element.</param>
2249 <returns>A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.</returns>
2250 </member>
2251 <member name="M:System.Reactive.Linq.Observable.GroupBy``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2252 <summary>
2253 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.
2254 </summary>
2255 <param name="source">An observable sequence whose elements to group.</param>
2256 <param name="keySelector">A function to extract the key for each element.</param>
2257 <param name="elementSelector">A function to map each source element to an element in an observable group.</param>
2258 <param name="comparer">An equality comparer to compare keys with.</param>
2259 <returns>A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.</returns>
2260 </member>
2261 <member name="M:System.Reactive.Linq.Observable.GroupByUntil``4(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{System.Reactive.Linq.IGroupedObservable{``1,``2},System.IObservable{``3}},System.Collections.Generic.IEqualityComparer{``1})">
2262 <summary>
2263 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.
2264 A duration selector function is used to control the lifetime of groups.
2265 </summary>
2266 <param name="source">An observable sequence whose elements to group.</param>
2267 <param name="keySelector">A function to extract the key for each element.</param>
2268 <param name="elementSelector">A function to map each source element to an element in an observable group.</param>
2269 <param name="durationSelector">A function to signal the expiration of a group.</param>
2270 <param name="comparer">An equality comparer to compare keys with.</param>
2271 <returns>
2272 A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
2273 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.
2274 </returns>
2275 </member>
2276 <member name="M:System.Reactive.Linq.Observable.GroupByUntil``4(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{System.Reactive.Linq.IGroupedObservable{``1,``2},System.IObservable{``3}})">
2277 <summary>
2278 Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function.
2279 A duration selector function is used to control the lifetime of groups.
2280 </summary>
2281 <param name="source">An observable sequence whose elements to group.</param>
2282 <param name="keySelector">A function to extract the key for each element.</param>
2283 <param name="elementSelector">A function to map each source element to an element in an observable group.</param>
2284 <param name="durationSelector">A function to signal the expiration of a group.</param>
2285 <returns>
2286 A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
2287 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.
2288 </returns>
2289 </member>
2290 <member name="M:System.Reactive.Linq.Observable.GroupByUntil``3(System.IObservable{``0},System.Func{``0,``1},System.Func{System.Reactive.Linq.IGroupedObservable{``1,``0},System.IObservable{``2}},System.Collections.Generic.IEqualityComparer{``1})">
2291 <summary>
2292 Groups the elements of an observable sequence according to a specified key selector function and comparer.
2293 A duration selector function is used to control the lifetime of groups.
2294 </summary>
2295 <param name="source">An observable sequence whose elements to group.</param>
2296 <param name="keySelector">A function to extract the key for each element.</param>
2297 <param name="durationSelector">A function to signal the expiration of a group.</param>
2298 <param name="comparer">An equality comparer to compare keys with.</param>
2299 <returns>
2300 A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
2301 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.
2302 </returns>
2303 </member>
2304 <member name="M:System.Reactive.Linq.Observable.GroupByUntil``3(System.IObservable{``0},System.Func{``0,``1},System.Func{System.Reactive.Linq.IGroupedObservable{``1,``0},System.IObservable{``2}})">
2305 <summary>
2306 Groups the elements of an observable sequence according to a specified key selector function.
2307 A duration selector function is used to control the lifetime of groups.
2308 </summary>
2309 <param name="source">An observable sequence whose elements to group.</param>
2310 <param name="keySelector">A function to extract the key for each element.</param>
2311 <param name="durationSelector">A function to signal the expiration of a group.</param>
2312 <returns>
2313 A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
2314 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.
2315 </returns>
2316 </member>
2317 <member name="M:System.Reactive.Linq.Observable.Take``1(System.IObservable{``0},System.Int32)">
2318 <summary>
2319 Returns a specified number of contiguous values from the start of an observable sequence.
2320 </summary>
2321 <param name="source">The sequence to take elements from.</param>
2322 <param name="count">The number of elements to return.</param>
2323 <returns>An observable sequence that contains the specified number of elements from the start of the input sequence.</returns>
2324 </member>
2325 <member name="M:System.Reactive.Linq.Observable.Take``1(System.IObservable{``0},System.Int32,System.Reactive.Concurrency.IScheduler)">
2326 <summary>
2327 Returns a specified number of contiguous values from the start of an observable sequence.
2328 </summary>
2329 <param name="source">The sequence to take elements from.</param>
2330 <param name="count">The number of elements to return.</param>
2331 <param name="scheduler">Scheduler used to produce an OnCompleted message in case <paramref name="count">count</paramref> is set to 0.</param>
2332 <returns>An observable sequence that contains the specified number of elements from the start of the input sequence.</returns>
2333 </member>
2334 <member name="M:System.Reactive.Linq.Observable.Skip``1(System.IObservable{``0},System.Int32)">
2335 <summary>
2336 Bypasses a specified number of values in an observable sequence and then returns the remaining values.
2337 </summary>
2338 <param name="source">The sequence to take elements from.</param>
2339 <param name="count">The number of elements to skip before returning the remaining elements.</param>
2340 <returns>An observable sequence that contains the elements that occur after the specified index in the input sequence.</returns>
2341 </member>
2342 <member name="M:System.Reactive.Linq.Observable.TakeWhile``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
2343 <summary>
2344 Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values.
2345 </summary>
2346 <param name="source">A sequence to return elements from.</param>
2347 <param name="predicate">A function to test each element for a condition.</param>
2348 <returns>An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.</returns>
2349 </member>
2350 <member name="M:System.Reactive.Linq.Observable.TakeWhile``1(System.IObservable{``0},System.Func{``0,System.Int32,System.Boolean})">
2351 <summary>
2352 Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values.
2353 </summary>
2354 <param name="source">A sequence to return elements from.</param>
2355 <param name="predicate">A function to test each element for a condition; the second parameter of the function represents the index of the source element.</param>
2356 <returns>An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.</returns>
2357 </member>
2358 <member name="M:System.Reactive.Linq.Observable.SkipWhile``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
2359 <summary>
2360 Bypasses values in an observable sequence as long as a specified condition is true and then returns the remaining values.
2361 </summary>
2362 <param name="source">An observable sequence to return elements from.</param>
2363 <param name="predicate">A function to test each element for a condition.</param>
2364 <returns>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.</returns>
2365 </member>
2366 <member name="M:System.Reactive.Linq.Observable.SkipWhile``1(System.IObservable{``0},System.Func{``0,System.Int32,System.Boolean})">
2367 <summary>
2368 Bypasses values in an observable sequence as long as a specified condition is true and then returns the remaining values.
2369 </summary>
2370 <param name="source">An observable sequence to return elements from.</param>
2371 <param name="predicate">A function to test each element for a condition; the second parameter of the function represents the index of the source element.</param>
2372 <returns>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.</returns>
2373 </member>
2374 <member name="M:System.Reactive.Linq.Observable.SelectMany``2(System.IObservable{``0},System.IObservable{``1})">
2375 <summary>
2376 Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
2377 </summary>
2378 <param name="source">An observable sequence of elements to project.</param>
2379 <param name="other">An observable sequence to project each element from the source sequence onto.</param>
2380 <returns>An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together.</returns>
2381 </member>
2382 <member name="M:System.Reactive.Linq.Observable.SelectMany``2(System.IObservable{``0},System.Func{``0,System.IObservable{``1}})">
2383 <summary>
2384 Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
2385 </summary>
2386 <param name="source">An observable sequence of elements to project.</param>
2387 <param name="selector">A transform function to apply to each element.</param>
2388 <returns>An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.</returns>
2389 </member>
2390 <member name="M:System.Reactive.Linq.Observable.SelectMany``2(System.IObservable{``0},System.Func{``0,System.IObservable{``1}},System.Func{System.Exception,System.IObservable{``1}},System.Func{System.IObservable{``1}})">
2391 <summary>
2392 Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
2393 </summary>
2394 <param name="source">An observable sequence of elements to project.</param>
2395 <param name="onNext">A transform function to apply to each element.</param>
2396 <param name="onError">A transform function to apply when an error occurs in the source sequence.</param>
2397 <param name="onCompleted">A transform function to apply when the end of the source sequence is reached.</param>
2398 <returns>An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.</returns>
2399 </member>
2400 <member name="M:System.Reactive.Linq.Observable.SelectMany``2(System.IObservable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}})">
2401 <summary>
2402 Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
2403 </summary>
2404 <param name="source">An observable sequence of elements to project.</param>
2405 <param name="selector">A transform function to apply to each element.</param>
2406 <returns>An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.</returns>
2407 </member>
2408 <member name="M:System.Reactive.Linq.Observable.SelectMany``3(System.IObservable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2})">
2409 <summary>
2410 Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
2411 </summary>
2412 <param name="source">An observable sequence of elements to project.</param>
2413 <param name="collectionSelector">A transform function to apply to each element.</param>
2414 <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
2415 <returns>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.</returns>
2416 </member>
2417 <member name="M:System.Reactive.Linq.Observable.SelectMany``3(System.IObservable{``0},System.Func{``0,System.IObservable{``1}},System.Func{``0,``1,``2})">
2418 <summary>
2419 Projects each element of an observable sequence to an observable sequence and flattens the resulting observable sequences into one observable sequence.
2420 </summary>
2421 <param name="source">An observable sequence of elements to project.</param>
2422 <param name="collectionSelector">A transform function to apply to each element.</param>
2423 <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
2424 <returns>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.</returns>
2425 </member>
2426 <member name="M:System.Reactive.Linq.Observable.OfType``1(System.IObservable{System.Object})">
2427 <summary>
2428 Filters the elements of an observable sequence based on the specified type.
2429 </summary>
2430 <returns>An observable sequence that contains elements from the input sequence of type TResult.</returns>
2431 </member>
2432 <member name="M:System.Reactive.Linq.Observable.Cast``1(System.IObservable{System.Object})">
2433 <summary>
2434 Converts the elements of an observable sequence to the specified type.
2435 </summary>
2436 <returns>An observable sequence that contains each element of the source sequence converted to the specified type.</returns>
2437 </member>
2438 <member name="M:System.Reactive.Linq.Observable.Join``5(System.IObservable{``0},System.IObservable{``1},System.Func{``0,System.IObservable{``2}},System.Func{``1,System.IObservable{``3}},System.Func{``0,``1,``4})">
2439 <summary>
2440 Correlates the elements of two sequences based on overlapping durations.
2441 </summary>
2442 <param name="left">The left observable sequence to join elements for.</param>
2443 <param name="right">The right observable sequence to join elements for.</param>
2444 <param name="leftDurationSelector">A function to select the duration of each element of the left observable sequence, used to determine overlap.</param>
2445 <param name="rightDurationSelector">A function to select the duration of each element of the right observable sequence, used to determine overlap.</param>
2446 <param name="resultSelector">A function invoked to compute a result element for any two overlapping elements of the left and right observable sequences.</param>
2447 <returns>An observable sequence that contains result elements computed from source elements that have an overlapping duration.</returns>
2448 </member>
2449 <member name="M:System.Reactive.Linq.Observable.GroupJoin``5(System.IObservable{``0},System.IObservable{``1},System.Func{``0,System.IObservable{``2}},System.Func{``1,System.IObservable{``3}},System.Func{``0,System.IObservable{``1},``4})">
2450 <summary>
2451 Correlates the elements of two sequences based on overlapping durations, and groups the results.
2452 </summary>
2453 <param name="left">The left observable sequence to join elements for.</param>
2454 <param name="right">The right observable sequence to join elements for.</param>
2455 <param name="leftDurationSelector">A function to select the duration of each element of the left observable sequence, used to determine overlap.</param>
2456 <param name="rightDurationSelector">A function to select the duration of each element of the right observable sequence, used to determine overlap.</param>
2457 <param name="resultSelector">A function invoked to compute a result element for any element of the left sequence with overlapping elements from the right observable sequence.</param>
2458 <returns>An observable sequence that contains result elements computed from source elements that have an overlapping duration.</returns>
2459 </member>
2460 <member name="M:System.Reactive.Linq.Observable.Interval(System.TimeSpan)">
2461 <summary>
2462 Returns an observable sequence that produces a value after each period.
2463 </summary>
2464 <param name="period">Period for producing the values in the resulting sequence.</param>
2465 <returns>An observable sequence that produces a value after each period.</returns>
2466 </member>
2467 <member name="M:System.Reactive.Linq.Observable.Interval(System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2468 <summary>
2469 Returns an observable sequence that produces a value after each period.
2470 </summary>
2471 <param name="period">Period for producing the values in the resulting sequence.</param>
2472 <param name="scheduler">Scheduler to run the timer on.</param>
2473 <returns>An observable sequence that produces a value after each period.</returns>
2474 </member>
2475 <member name="M:System.Reactive.Linq.Observable.Timer(System.TimeSpan)">
2476 <summary>
2477 Returns an observable sequence that produces a value after the dueTime has elapsed.
2478 </summary>
2479 <param name="dueTime">Relative time at which to produce the value.</param>
2480 <returns>An observable sequence that produces a value after the due time has elapsed.</returns>
2481 </member>
2482 <member name="M:System.Reactive.Linq.Observable.Timer(System.DateTimeOffset)">
2483 <summary>
2484 Returns an observable sequence that produces a value at dueTime.
2485 </summary>
2486 <param name="dueTime">Absolute time at which to produce the value.</param>
2487 <returns>An observable sequence that produces a value at due time.</returns>
2488 </member>
2489 <member name="M:System.Reactive.Linq.Observable.Timer(System.TimeSpan,System.TimeSpan)">
2490 <summary>
2491 Returns an observable sequence that produces a value after dueTime has elapsed and then after each period.
2492 </summary>
2493 <param name="dueTime">Relative time at which to produce the first value.</param>
2494 <param name="period">Period to produce subsequent values.</param>
2495 <returns>An observable sequence that produces a value after due time has elapsed and then after each period.</returns>
2496 </member>
2497 <member name="M:System.Reactive.Linq.Observable.Timer(System.DateTimeOffset,System.TimeSpan)">
2498 <summary>
2499 Returns an observable sequence that produces a value at dueTime and then after each period.
2500 </summary>
2501 <param name="dueTime">Absolute time at which to produce the first value.</param>
2502 <param name="period">Period to produce subsequent values.</param>
2503 <returns>An observable sequence that produces a value at due time and then after each period.</returns>
2504 </member>
2505 <member name="M:System.Reactive.Linq.Observable.Timer(System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2506 <summary>
2507 Returns an observable sequence that produces a value after the dueTime has elapsed.
2508 </summary>
2509 <param name="dueTime">Relative time at which to produce the value.</param>
2510 <param name="scheduler">Scheduler to run the timer on.</param>
2511 <returns>An observable sequence that produces a value after the due time has elapsed.</returns>
2512 </member>
2513 <member name="M:System.Reactive.Linq.Observable.Timer(System.DateTimeOffset,System.Reactive.Concurrency.IScheduler)">
2514 <summary>
2515 Returns an observable sequence that produces a value at dueTime.
2516 </summary>
2517 <param name="dueTime">Absolute time at which to produce the value.</param>
2518 <param name="scheduler">Scheduler to run the timer on.</param>
2519 <returns>An observable sequence that produces a value at due time.</returns>
2520 </member>
2521 <member name="M:System.Reactive.Linq.Observable.Timer(System.TimeSpan,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2522 <summary>
2523 Returns an observable sequence that produces a value after dueTime has elapsed and then after each period.
2524 </summary>
2525 <param name="dueTime">Relative time at which to produce the first value.</param>
2526 <param name="period">Period to produce subsequent values.</param>
2527 <param name="scheduler">Scheduler to run the timer on.</param>
2528 <returns>An observable sequence that produces a value after due time has elapsed and then each period.</returns>
2529 </member>
2530 <member name="M:System.Reactive.Linq.Observable.Timer(System.DateTimeOffset,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2531 <summary>
2532 Returns an observable sequence that produces a value at dueTime and then after each period.
2533 </summary>
2534 <param name="dueTime">Absolute time at which to produce the first value.</param>
2535 <param name="period">Period to produce subsequent values.</param>
2536 <param name="scheduler">Scheduler to run the timer on.</param>
2537 <returns>An observable sequence that produces a value at due time and then after each period.</returns>
2538 </member>
2539 <member name="M:System.Reactive.Linq.Observable.Delay``1(System.IObservable{``0},System.TimeSpan)">
2540 <summary>
2541 Time shifts the observable sequence by dueTime.
2542 The relative time intervals between the values are preserved.
2543 </summary>
2544 <param name="source">Source sequence to delay values for.</param>
2545 <param name="dueTime">Relative time by which to shift the observable sequence.</param>
2546 <returns>Time-shifted sequence.</returns>
2547 </member>
2548 <member name="M:System.Reactive.Linq.Observable.Delay``1(System.IObservable{``0},System.DateTimeOffset)">
2549 <summary>
2550 Time shifts the observable sequence by dueTime.
2551 The relative time intervals between the values are preserved.
2552 </summary>
2553 <param name="source">Source sequence to delay values for.</param>
2554 <param name="dueTime">Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription.</param>
2555 <returns>Time-shifted sequence.</returns>
2556 </member>
2557 <member name="M:System.Reactive.Linq.Observable.Delay``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2558 <summary>
2559 Time shifts the observable sequence by dueTime.
2560 The relative time intervals between the values are preserved.
2561 </summary>
2562 <param name="source">Source sequence to delay values for.</param>
2563 <param name="dueTime">Relative time by which to shift the observable sequence.</param>
2564 <param name="scheduler">Scheduler to run the delay timers on.</param>
2565 <returns>Time-shifted sequence.</returns>
2566 </member>
2567 <member name="M:System.Reactive.Linq.Observable.Delay``1(System.IObservable{``0},System.DateTimeOffset,System.Reactive.Concurrency.IScheduler)">
2568 <summary>
2569 Time shifts the observable sequence by dueTime.
2570 The relative time intervals between the values are preserved.
2571 </summary>
2572 <param name="source">Source sequence to delay values for.</param>
2573 <param name="dueTime">Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription.</param>
2574 <param name="scheduler">Scheduler to run the delay timers on.</param>
2575 <returns>Time-shifted sequence.</returns>
2576 </member>
2577 <member name="M:System.Reactive.Linq.Observable.Throttle``1(System.IObservable{``0},System.TimeSpan)">
2578 <summary>
2579 Ignores values from an observable sequence which are followed by another value before dueTime.
2580 </summary>
2581 <param name="source">Source sequence to throttle.</param>
2582 <param name="dueTime">Duration of the throttle period for each value.</param>
2583 <returns>The throttled sequence.</returns>
2584 </member>
2585 <member name="M:System.Reactive.Linq.Observable.Throttle``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2586 <summary>
2587 Ignores values from an observable sequence which are followed by another value before dueTime.
2588 </summary>
2589 <param name="source">Source sequence to throttle.</param>
2590 <param name="dueTime">Duration of the throttle period for each value.</param>
2591 <param name="scheduler">Scheduler to run the throttle timers on.</param>
2592 <returns>The throttled sequence.</returns>
2593 </member>
2594 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.TimeSpan,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2595 <summary>
2596 Projects each element of an observable sequence into zero or more windows which are produced based on timing information.
2597 </summary>
2598 <param name="source">Source sequence to produce windows over.</param>
2599 <param name="timeSpan">Length of each window.</param>
2600 <param name="timeShift">Interval between creation of consecutive windows.</param>
2601 <param name="scheduler">Scheduler to run windowing timers on.</param>
2602 <returns>An observable sequence of windows.</returns>
2603 </member>
2604 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2605 <summary>
2606 Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information.
2607 </summary>
2608 <param name="source">Source sequence to produce windows over.</param>
2609 <param name="timeSpan">Length of each window.</param>
2610 <param name="scheduler">Scheduler to run windowing timers on.</param>
2611 <returns>An observable sequence of windows.</returns>
2612 </member>
2613 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.TimeSpan,System.TimeSpan)">
2614 <summary>
2615 Projects each element of an observable sequence into zero or more windows which are produced based on timing information.
2616 </summary>
2617 <param name="source">Source sequence to produce windows over.</param>
2618 <param name="timeSpan">Length of each window.</param>
2619 <param name="timeShift">Interval between creation of consecutive windows.</param>
2620 <returns>An observable sequence of windows.</returns>
2621 </member>
2622 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.TimeSpan)">
2623 <summary>
2624 Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information.
2625 </summary>
2626 <param name="source">Source sequence to produce windows over.</param>
2627 <param name="timeSpan">Length of each window.</param>
2628 <returns>The sequence of windows.</returns>
2629 </member>
2630 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.TimeSpan,System.Int32,System.Reactive.Concurrency.IScheduler)">
2631 <summary>
2632 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.
2633 </summary>
2634 <param name="source">Source sequence to produce windows over.</param>
2635 <param name="timeSpan">Maximum time length of a window.</param>
2636 <param name="count">Maximum element count of a window.</param>
2637 <param name="scheduler">Scheduler to run windowing timers on.</param>
2638 <returns>An observable sequence of windows.</returns>
2639 </member>
2640 <member name="M:System.Reactive.Linq.Observable.Window``1(System.IObservable{``0},System.TimeSpan,System.Int32)">
2641 <summary>
2642 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.
2643 </summary>
2644 <param name="source">Source sequence to produce windows over.</param>
2645 <param name="timeSpan">Maximum time length of a window.</param>
2646 <param name="count">Maximum element count of a window.</param>
2647 <returns>An observable sequence of windows.</returns>
2648 </member>
2649 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.TimeSpan,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2650 <summary>
2651 Projects each element of an observable sequence into zero or more buffers which are produced based on timing information.
2652 </summary>
2653 <param name="source">Source sequence to produce buffers over.</param>
2654 <param name="timeSpan">Length of each buffer.</param>
2655 <param name="timeShift">Interval between creation of consecutive buffers.</param>
2656 <param name="scheduler">Scheduler to run buffering timers on.</param>
2657 <returns>An observable sequence of buffers.</returns>
2658 </member>
2659 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2660 <summary>
2661 Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information.
2662 </summary>
2663 <param name="source">Source sequence to produce buffers over.</param>
2664 <param name="timeSpan">Length of each buffer.</param>
2665 <param name="scheduler">Scheduler to run buffering timers on.</param>
2666 <returns>An observable sequence of buffers.</returns>
2667 </member>
2668 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.TimeSpan,System.TimeSpan)">
2669 <summary>
2670 Projects each element of an observable sequence into zero or more buffers which are produced based on timing information.
2671 </summary>
2672 <param name="source">Source sequence to produce buffers over.</param>
2673 <param name="timeSpan">Length of each buffer.</param>
2674 <param name="timeShift">Interval between creation of consecutive buffers.</param>
2675 <returns>An observable sequence of buffers.</returns>
2676 </member>
2677 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.TimeSpan)">
2678 <summary>
2679 Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information.
2680 </summary>
2681 <param name="source">Source sequence to produce buffers over.</param>
2682 <param name="timeSpan">Length of each buffer.</param>
2683 <returns>An observable sequence of buffers.</returns>
2684 </member>
2685 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.TimeSpan,System.Int32,System.Reactive.Concurrency.IScheduler)">
2686 <summary>
2687 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.
2688 </summary>
2689 <param name="source">Source sequence to produce buffers over.</param>
2690 <param name="timeSpan">Maximum time length of a buffer.</param>
2691 <param name="count">Maximum element count of a buffer.</param>
2692 <param name="scheduler">Scheduler to run buffering timers on.</param>
2693 <returns>An observable sequence of buffers.</returns>
2694 </member>
2695 <member name="M:System.Reactive.Linq.Observable.Buffer``1(System.IObservable{``0},System.TimeSpan,System.Int32)">
2696 <summary>
2697 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.
2698 </summary>
2699 <param name="source">Source sequence to produce buffers over.</param>
2700 <param name="timeSpan">Maximum time length of a window.</param>
2701 <param name="count">Maximum element count of a window.</param>
2702 <returns>An observable sequence of buffers.</returns>
2703 </member>
2704 <member name="M:System.Reactive.Linq.Observable.TimeInterval``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
2705 <summary>
2706 Records the time interval between consecutive values in an observable sequence.
2707 </summary>
2708 <param name="source">Source sequence to record time intervals for.</param>
2709 <param name="scheduler">Scheduler used to compute time intervals.</param>
2710 <returns>An observable sequence with time interval information on values.</returns>
2711 </member>
2712 <member name="M:System.Reactive.Linq.Observable.TimeInterval``1(System.IObservable{``0})">
2713 <summary>
2714 Records the time interval between consecutive values in an observable sequence.
2715 </summary>
2716 <param name="source">Source sequence to record time intervals for.</param>
2717 <returns>An observable sequence with time interval information on values.</returns>
2718 </member>
2719 <member name="M:System.Reactive.Linq.Observable.Timestamp``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
2720 <summary>
2721 Records the timestamp for each value in an observable sequence.
2722 </summary>
2723 <param name="source">Source sequence to timestamp values for.</param>
2724 <param name="scheduler">Scheduler used to compute timestamps.</param>
2725 <returns>An observable sequence with timestamp information on values.</returns>
2726 </member>
2727 <member name="M:System.Reactive.Linq.Observable.Timestamp``1(System.IObservable{``0})">
2728 <summary>
2729 Records the timestamp for each value in an observable sequence.
2730 </summary>
2731 <param name="source">Source sequence to timestamp values for.</param>
2732 <returns>An observable sequence with timestamp information on values.</returns>
2733 </member>
2734 <member name="M:System.Reactive.Linq.Observable.Sample``2(System.IObservable{``0},System.IObservable{``1})">
2735 <summary>
2736 Samples the observable sequence at sampling ticks.
2737 </summary>
2738 <param name="source">Source sequence to sample.</param>
2739 <param name="sampler">Sampling tick sequence.</param>
2740 <returns>Sampled observable sequence.</returns>
2741 </member>
2742 <member name="M:System.Reactive.Linq.Observable.Sample``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2743 <summary>
2744 Samples the observable sequence at each interval.
2745 </summary>
2746 <param name="source">Source sequence to sample.</param>
2747 <param name="interval">Interval at which to sample.</param>
2748 <param name="scheduler">Scheduler to run the sampling timer on.</param>
2749 <returns>Sampled observable sequence.</returns>
2750 </member>
2751 <member name="M:System.Reactive.Linq.Observable.Sample``1(System.IObservable{``0},System.TimeSpan)">
2752 <summary>
2753 Samples the observable sequence at each interval.
2754 </summary>
2755 <param name="source">Source sequence to sample.</param>
2756 <param name="interval">Interval at which to sample.</param>
2757 <returns>Sampled observable sequence.</returns>
2758 </member>
2759 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.TimeSpan)">
2760 <summary>
2761 Returns either the observable sequence or an TimeoutException if dueTime elapses.
2762 </summary>
2763 <param name="source">Source sequence to perform a timeout for.</param>
2764 <param name="dueTime">Maxmimum duration between values before a timeout occurs.</param>
2765 <returns>The source sequence with a TimeoutException in case of a timeout.</returns>
2766 </member>
2767 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.TimeSpan,System.IObservable{``0})">
2768 <summary>
2769 Returns the source observable sequence or the other observable sequence if dueTime elapses.
2770 </summary>
2771 <param name="source">Source sequence to perform a timeout for.</param>
2772 <param name="dueTime">Maxmimum duration between values before a timeout occurs.</param>
2773 <param name="other">Sequence to return in case of a timeout.</param>
2774 <returns>The source sequence switching to the other sequence in case of a timeout.</returns>
2775 </member>
2776 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.DateTimeOffset)">
2777 <summary>
2778 Returns either the observable sequence or an TimeoutException if dueTime elapses.
2779 </summary>
2780 <param name="source">Source sequence to perform a timeout for.</param>
2781 <param name="dueTime">Time when a timeout occurs.</param>
2782 <returns>The source sequence with a TimeoutException in case of a timeout.</returns>
2783 </member>
2784 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.DateTimeOffset,System.IObservable{``0})">
2785 <summary>
2786 Returns the source observable sequence or the other observable sequence if dueTime elapses.
2787 </summary>
2788 <param name="source">Source sequence to perform a timeout for.</param>
2789 <param name="dueTime">Time when a timeout occurs.</param>
2790 <param name="other">Sequence to return in case of a timeout.</param>
2791 <returns>The source sequence switching to the other sequence in case of a timeout.</returns>
2792 </member>
2793 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
2794 <summary>
2795 Returns either the observable sequence or an TimeoutException if dueTime elapses.
2796 </summary>
2797 <param name="source">Source sequence to perform a timeout for.</param>
2798 <param name="dueTime">Maxmimum duration between values before a timeout occurs.</param>
2799 <param name="scheduler">Scheduler to run the timeout timers on.</param>
2800 <returns>The source sequence with a TimeoutException in case of a timeout.</returns>
2801 </member>
2802 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.TimeSpan,System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
2803 <summary>
2804 Returns the source observable sequence or the other observable sequence if dueTime elapses.
2805 </summary>
2806 <param name="source">Source sequence to perform a timeout for.</param>
2807 <param name="dueTime">Maxmimum duration between values before a timeout occurs.</param>
2808 <param name="other">Sequence to return in case of a timeout.</param>
2809 <param name="scheduler">Scheduler to run the timeout timers on.</param>
2810 <returns>The source sequence switching to the other sequence in case of a timeout.</returns>
2811 </member>
2812 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.DateTimeOffset,System.Reactive.Concurrency.IScheduler)">
2813 <summary>
2814 Returns either the observable sequence or an TimeoutException if dueTime elapses.
2815 </summary>
2816 <param name="source">Source sequence to perform a timeout for.</param>
2817 <param name="dueTime">Time when a timeout occurs.</param>
2818 <param name="scheduler">Scheduler to run the timeout timers on.</param>
2819 <returns>The source sequence with a TimeoutException in case of a timeout.</returns>
2820 </member>
2821 <member name="M:System.Reactive.Linq.Observable.Timeout``1(System.IObservable{``0},System.DateTimeOffset,System.IObservable{``0},System.Reactive.Concurrency.IScheduler)">
2822 <summary>
2823 Returns the source observable sequence or the other observable sequence if dueTime elapses.
2824 </summary>
2825 <param name="source">Source sequence to perform a timeout for.</param>
2826 <param name="dueTime">Time when a timeout occurs.</param>
2827 <param name="other">Sequence to return in case of a timeout.</param>
2828 <param name="scheduler">Scheduler to run the timeout timers on.</param>
2829 <returns>The source sequence switching to the other sequence in case of a timeout.</returns>
2830 </member>
2831 <member name="M:System.Reactive.Linq.Observable.Generate``2(``0,System.Func{``0,System.Boolean},System.Func{``0,``0},System.Func{``0,``1},System.Func{``0,System.TimeSpan},System.Reactive.Concurrency.IScheduler)">
2832 <summary>
2833 Generates an observable sequence by iterating a state from an initial state until the condition fails.
2834 </summary>
2835 <param name="initialState">Initial state.</param>
2836 <param name="condition">Condition to terminate generation (upon returning false).</param>
2837 <param name="iterate">Iteration step function.</param>
2838 <param name="resultSelector">Selector function for results produced in the sequence.</param>
2839 <param name="timeSelector">Time selector function to control the speed of values being produced each iteration.</param>
2840 <param name="scheduler">Scheduler on which to run the generator loop.</param>
2841 <returns>The generated sequence.</returns>
2842 </member>
2843 <member name="M:System.Reactive.Linq.Observable.Generate``2(``0,System.Func{``0,System.Boolean},System.Func{``0,``0},System.Func{``0,``1},System.Func{``0,System.TimeSpan})">
2844 <summary>
2845 Generates an observable sequence by iterating a state from an initial state until the condition fails.
2846 </summary>
2847 <param name="initialState">Initial state.</param>
2848 <param name="condition">Condition to terminate generation (upon returning false).</param>
2849 <param name="iterate">Iteration step function.</param>
2850 <param name="resultSelector">Selector function for results produced in the sequence.</param>
2851 <param name="timeSelector">Time selector function to control the speed of values being produced each iteration.</param>
2852 <returns>The generated sequence.</returns>
2853 </member>
2854 <member name="M:System.Reactive.Linq.Observable.Generate``2(``0,System.Func{``0,System.Boolean},System.Func{``0,``0},System.Func{``0,``1},System.Func{``0,System.DateTimeOffset},System.Reactive.Concurrency.IScheduler)">
2855 <summary>
2856 Generates an observable sequence by iterating a state from an initial state until the condition fails.
2857 </summary>
2858 <param name="initialState">Initial state.</param>
2859 <param name="condition">Condition to terminate generation (upon returning false).</param>
2860 <param name="iterate">Iteration step function.</param>
2861 <param name="resultSelector">Selector function for results produced in the sequence.</param>
2862 <param name="timeSelector">Time selector function to control the speed of values being produced each iteration.</param>
2863 <param name="scheduler">Scheduler on which to run the generator loop.</param>
2864 <returns>The generated sequence.</returns>
2865 </member>
2866 <member name="M:System.Reactive.Linq.Observable.Generate``2(``0,System.Func{``0,System.Boolean},System.Func{``0,``0},System.Func{``0,``1},System.Func{``0,System.DateTimeOffset})">
2867 <summary>
2868 Generates an observable sequence by iterating a state from an initial state until the condition fails.
2869 </summary>
2870 <param name="initialState">Initial state.</param>
2871 <param name="condition">Condition to terminate generation (upon returning false).</param>
2872 <param name="iterate">Iteration step function.</param>
2873 <param name="resultSelector">Selector function for results produced in the sequence.</param>
2874 <param name="timeSelector">Time selector function to control the speed of values being produced each iteration.</param>
2875 <returns>The generated sequence.</returns>
2876 </member>
2877 <member name="M:System.Reactive.Linq.Observable.AnonymousComparer`1.#ctor(System.Func{`0,`0,System.Int32})">
2878 <summary>
2879 Creates an instance of IComparer by providing a method that compares two objects.
2880 </summary>
2881 </member>
2882 <member name="M:System.Reactive.Linq.Observable.AnonymousComparer`1.Compare(`0,`0)">
2883 <summary>
2884 Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
2885 </summary>
2886 </member>
2887 <member name="T:System.Reactive.NotificationKind">
2888 <summary>
2889 Indicates the type of a notification.
2890 </summary>
2891 </member>
2892 <member name="F:System.Reactive.NotificationKind.OnNext">
2893 <summary>
2894 Represents an OnNext notification.
2895 </summary>
2896 </member>
2897 <member name="F:System.Reactive.NotificationKind.OnError">
2898 <summary>
2899 Represents an OnError notification.
2900 </summary>
2901 </member>
2902 <member name="F:System.Reactive.NotificationKind.OnCompleted">
2903 <summary>
2904 Represents an OnCompleted notification.
2905 </summary>
2906 </member>
2907 <member name="T:System.Reactive.Notification`1">
2908 <summary>
2909 Represents a notification to an observer.
2910 </summary>
2911 </member>
2912 <member name="M:System.Reactive.Notification`1.Equals(System.Reactive.Notification{`0})">
2913 <summary>
2914 Indicates whether this instance and other are equal.
2915 </summary>
2916 </member>
2917 <member name="M:System.Reactive.Notification`1.Equals(System.Object)">
2918 <summary>
2919 Indicates whether this instance and a specified object are equal.
2920 </summary>
2921 </member>
2922 <member name="M:System.Reactive.Notification`1.op_Equality(System.Reactive.Notification{`0},System.Reactive.Notification{`0})">
2923 <summary>
2924 Indicates whether left and right arguments are equal.
2925 </summary>
2926 </member>
2927 <member name="M:System.Reactive.Notification`1.op_Inequality(System.Reactive.Notification{`0},System.Reactive.Notification{`0})">
2928 <summary>
2929 Indicates whether left and right arguments are not equal.
2930 </summary>
2931 </member>
2932 <member name="M:System.Reactive.Notification`1.Accept(System.IObserver{`0})">
2933 <summary>
2934 Invokes the observer's method corresponding to the notification.
2935 </summary>
2936 <param name="observer">Observer to invoke the notification on.</param>
2937 </member>
2938 <member name="M:System.Reactive.Notification`1.Accept(System.Action{`0},System.Action{System.Exception},System.Action)">
2939 <summary>
2940 Invokes the delegate corresponding to the notification.
2941 </summary>
2942 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
2943 <param name="onError">Delegate to invoke for an OnError notification.</param>
2944 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
2945 </member>
2946 <member name="M:System.Reactive.Notification`1.Accept``1(System.Func{`0,``0},System.Func{System.Exception,``0},System.Func{``0})">
2947 <summary>
2948 Invokes the delegate corresponding to the notification and returns the produced result.
2949 </summary>
2950 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
2951 <param name="onError">Delegate to invoke for an OnError notification.</param>
2952 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
2953 <returns>Result produced by the observation.</returns>
2954 </member>
2955 <member name="M:System.Reactive.Notification`1.ToObservable">
2956 <summary>
2957 Returns an observable sequence with a single notification, using the immediate scheduler.
2958 </summary>
2959 <returns>The observable sequence that surfaces the behavior of the notification upon subscription.</returns>
2960 </member>
2961 <member name="M:System.Reactive.Notification`1.ToObservable(System.Reactive.Concurrency.IScheduler)">
2962 <summary>
2963 Returns an observable sequence with a single notification.
2964 </summary>
2965 <param name="scheduler">Scheduler to send out the notification calls on.</param>
2966 <returns>The observable sequence that surfaces the behavior of the notification upon subscription.</returns>
2967 </member>
2968 <member name="P:System.Reactive.Notification`1.Value">
2969 <summary>
2970 Returns the value of an OnNext notification or throws an exception.
2971 </summary>
2972 </member>
2973 <member name="P:System.Reactive.Notification`1.HasValue">
2974 <summary>
2975 Returns a value that indicates whether the notification has a value.
2976 </summary>
2977 </member>
2978 <member name="P:System.Reactive.Notification`1.Exception">
2979 <summary>
2980 Returns the exception of an OnError notification or returns null.
2981 </summary>
2982 </member>
2983 <member name="P:System.Reactive.Notification`1.Kind">
2984 <summary>
2985 Gets the kind of notification that is represented.
2986 </summary>
2987 </member>
2988 <member name="T:System.Reactive.Notification`1.OnNextNotification">
2989 <summary>
2990 Represents a OnNext notification to an observer.
2991 </summary>
2992 </member>
2993 <member name="M:System.Reactive.Notification`1.OnNextNotification.#ctor(`0)">
2994 <summary>
2995 Constructs a notification of a new value.
2996 </summary>
2997 </member>
2998 <member name="M:System.Reactive.Notification`1.OnNextNotification.GetHashCode">
2999 <summary>
3000 Returns the hash code for this instance.
3001 </summary>
3002 </member>
3003 <member name="M:System.Reactive.Notification`1.OnNextNotification.Equals(System.Reactive.Notification{`0})">
3004 <summary>
3005 Indicates whether this instance and a specified object are equal.
3006 </summary>
3007 </member>
3008 <member name="M:System.Reactive.Notification`1.OnNextNotification.ToString">
3009 <summary>
3010 Returns a string representation of this instance.
3011 </summary>
3012 </member>
3013 <member name="M:System.Reactive.Notification`1.OnNextNotification.Accept(System.IObserver{`0})">
3014 <summary>
3015 Invokes the observer's method corresponding to the notification.
3016 </summary>
3017 <param name="observer">Observer to invoke the notification on.</param>
3018 </member>
3019 <member name="M:System.Reactive.Notification`1.OnNextNotification.Accept(System.Action{`0},System.Action{System.Exception},System.Action)">
3020 <summary>
3021 Invokes the delegate corresponding to the notification.
3022 </summary>
3023 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
3024 <param name="onError">Delegate to invoke for an OnError notification.</param>
3025 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
3026 </member>
3027 <member name="M:System.Reactive.Notification`1.OnNextNotification.Accept``1(System.Func{`0,``0},System.Func{System.Exception,``0},System.Func{``0})">
3028 <summary>
3029 Invokes the delegate corresponding to the notification and returns the produced result.
3030 </summary>
3031 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
3032 <param name="onError">Delegate to invoke for an OnError notification.</param>
3033 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
3034 <returns>Result produced by the observation.</returns>
3035 </member>
3036 <member name="P:System.Reactive.Notification`1.OnNextNotification.Value">
3037 <summary>
3038 Returns the value of an OnNext notification.
3039 </summary>
3040 </member>
3041 <member name="P:System.Reactive.Notification`1.OnNextNotification.Exception">
3042 <summary>
3043 Returns null.
3044 </summary>
3045 </member>
3046 <member name="P:System.Reactive.Notification`1.OnNextNotification.HasValue">
3047 <summary>
3048 Returns true.
3049 </summary>
3050 </member>
3051 <member name="P:System.Reactive.Notification`1.OnNextNotification.Kind">
3052 <summary>
3053 Returns NotificationKind.OnNext.
3054 </summary>
3055 </member>
3056 <member name="T:System.Reactive.Notification`1.OnErrorNotification">
3057 <summary>
3058 Represents a OnError notification to an observer.
3059 </summary>
3060 </member>
3061 <member name="M:System.Reactive.Notification`1.OnErrorNotification.#ctor(System.Exception)">
3062 <summary>
3063 Constructs a notification of an exception.
3064 </summary>
3065 </member>
3066 <member name="M:System.Reactive.Notification`1.OnErrorNotification.GetHashCode">
3067 <summary>
3068 Returns the hash code for this instance.
3069 </summary>
3070 </member>
3071 <member name="M:System.Reactive.Notification`1.OnErrorNotification.Equals(System.Reactive.Notification{`0})">
3072 <summary>
3073 Indicates whether this instance and other are equal.
3074 </summary>
3075 </member>
3076 <member name="M:System.Reactive.Notification`1.OnErrorNotification.ToString">
3077 <summary>
3078 Returns a string representation of this instance.
3079 </summary>
3080 </member>
3081 <member name="M:System.Reactive.Notification`1.OnErrorNotification.Accept(System.IObserver{`0})">
3082 <summary>
3083 Invokes the observer's method corresponding to the notification.
3084 </summary>
3085 <param name="observer">Observer to invoke the notification on.</param>
3086 </member>
3087 <member name="M:System.Reactive.Notification`1.OnErrorNotification.Accept(System.Action{`0},System.Action{System.Exception},System.Action)">
3088 <summary>
3089 Invokes the delegate corresponding to the notification.
3090 </summary>
3091 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
3092 <param name="onError">Delegate to invoke for an OnError notification.</param>
3093 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
3094 </member>
3095 <member name="M:System.Reactive.Notification`1.OnErrorNotification.Accept``1(System.Func{`0,``0},System.Func{System.Exception,``0},System.Func{``0})">
3096 <summary>
3097 Invokes the delegate corresponding to the notification and returns the produced result.
3098 </summary>
3099 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
3100 <param name="onError">Delegate to invoke for an OnError notification.</param>
3101 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
3102 <returns>Result produced by the observation.</returns>
3103 </member>
3104 <member name="P:System.Reactive.Notification`1.OnErrorNotification.Value">
3105 <summary>
3106 Throws the exception.
3107 </summary>
3108 </member>
3109 <member name="P:System.Reactive.Notification`1.OnErrorNotification.Exception">
3110 <summary>
3111 Returns the exception.
3112 </summary>
3113 </member>
3114 <member name="P:System.Reactive.Notification`1.OnErrorNotification.HasValue">
3115 <summary>
3116 Returns false.
3117 </summary>
3118 </member>
3119 <member name="P:System.Reactive.Notification`1.OnErrorNotification.Kind">
3120 <summary>
3121 Returns NotificationKind.OnError.
3122 </summary>
3123 </member>
3124 <member name="T:System.Reactive.Notification`1.OnCompletedNotification">
3125 <summary>
3126 Represents a OnCompleted notification to an observer.
3127 </summary>
3128 </member>
3129 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.#ctor">
3130 <summary>
3131 Constructs a notification of the end of a sequence.
3132 </summary>
3133 </member>
3134 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.GetHashCode">
3135 <summary>
3136 Returns the hash code for this instance.
3137 </summary>
3138 </member>
3139 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.Equals(System.Reactive.Notification{`0})">
3140 <summary>
3141 Indicates whether this instance and other are equal.
3142 </summary>
3143 </member>
3144 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.ToString">
3145 <summary>
3146 Returns a string representation of this instance.
3147 </summary>
3148 </member>
3149 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.Accept(System.IObserver{`0})">
3150 <summary>
3151 Invokes the observer's method corresponding to the notification.
3152 </summary>
3153 <param name="observer">Observer to invoke the notification on.</param>
3154 </member>
3155 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.Accept(System.Action{`0},System.Action{System.Exception},System.Action)">
3156 <summary>
3157 Invokes the delegate corresponding to the notification.
3158 </summary>
3159 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
3160 <param name="onError">Delegate to invoke for an OnError notification.</param>
3161 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
3162 </member>
3163 <member name="M:System.Reactive.Notification`1.OnCompletedNotification.Accept``1(System.Func{`0,``0},System.Func{System.Exception,``0},System.Func{``0})">
3164 <summary>
3165 Invokes the delegate corresponding to the notification and returns the produced result.
3166 </summary>
3167 <param name="onNext">Delegate to invoke for an OnNext notification.</param>
3168 <param name="onError">Delegate to invoke for an OnError notification.</param>
3169 <param name="onCompleted">Delegate to invoke for an OnCompleted notification.</param>
3170 <returns>Result produced by the observation.</returns>
3171 </member>
3172 <member name="P:System.Reactive.Notification`1.OnCompletedNotification.Value">
3173 <summary>
3174 Throws an InvalidOperationException.
3175 </summary>
3176 </member>
3177 <member name="P:System.Reactive.Notification`1.OnCompletedNotification.Exception">
3178 <summary>
3179 Returns null.
3180 </summary>
3181 </member>
3182 <member name="P:System.Reactive.Notification`1.OnCompletedNotification.HasValue">
3183 <summary>
3184 Returns false.
3185 </summary>
3186 </member>
3187 <member name="P:System.Reactive.Notification`1.OnCompletedNotification.Kind">
3188 <summary>
3189 Returns NotificationKind.OnCompleted.
3190 </summary>
3191 </member>
3192 <member name="T:System.Reactive.Notification">
3193 <summary>
3194 Provides a set of static methods for constructing notifications.
3195 </summary>
3196 </member>
3197 <member name="M:System.Reactive.Notification.CreateOnNext``1(``0)">
3198 <summary>
3199 Creates an object that represents an OnNext notification to an observer.
3200 </summary>
3201 <param name="value">The value contained in the notification.</param>
3202 <returns>The OnNext notification containing the value.</returns>
3203 </member>
3204 <member name="M:System.Reactive.Notification.CreateOnError``1(System.Exception)">
3205 <summary>
3206 Creates an object that represents an OnError notification to an observer.
3207 </summary>
3208 <param name="error">The exception contained in the notification.</param>
3209 <returns>The OnError notification containing the exception.</returns>
3210 </member>
3211 <member name="M:System.Reactive.Notification.CreateOnCompleted``1">
3212 <summary>
3213 Creates an object that represents an OnCompleted notification to an observer.
3214 </summary>
3215 <returns>The OnCompleted notification.</returns>
3216 </member>
3217 <member name="T:System.Reactive.Concurrency.CurrentThreadScheduler">
3218 <summary>
3219 Represents an object that schedules units of work on the current thread.
3220 </summary>
3221 <seealso cref="P:System.Reactive.Concurrency.Scheduler.CurrentThread">Singleton instance of this type exposed through this static property.</seealso>
3222 </member>
3223 <member name="T:System.Reactive.Concurrency.IScheduler">
3224 <summary>
3225 Represents an object that schedules units of work.
3226 </summary>
3227 </member>
3228 <member name="M:System.Reactive.Concurrency.IScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3229 <summary>
3230 Schedules an action to be executed.
3231 </summary>
3232 <param name="state">State passed to the action to be executed.</param>
3233 <param name="action">Action to be executed.</param>
3234 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3235 </member>
3236 <member name="M:System.Reactive.Concurrency.IScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3237 <summary>
3238 Schedules an action to be executed after dueTime.
3239 </summary>
3240 <param name="state">State passed to the action to be executed.</param>
3241 <param name="action">Action to be executed.</param>
3242 <param name="dueTime">Relative time after which to execute the action.</param>
3243 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3244 </member>
3245 <member name="M:System.Reactive.Concurrency.IScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3246 <summary>
3247 Schedules an action to be executed at dueTime.
3248 </summary>
3249 <param name="state">State passed to the action to be executed.</param>
3250 <param name="action">Action to be executed.</param>
3251 <param name="dueTime">Absolute time at which to execute the action.</param>
3252 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3253 </member>
3254 <member name="P:System.Reactive.Concurrency.IScheduler.Now">
3255 <summary>
3256 Gets the scheduler's notion of current time.
3257 </summary>
3258 </member>
3259 <member name="M:System.Reactive.Concurrency.CurrentThreadScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3260 <summary>
3261 Schedules an action to be executed.
3262 </summary>
3263 <param name="state">State passed to the action to be executed.</param>
3264 <param name="action">Action to be executed.</param>
3265 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3266 </member>
3267 <member name="M:System.Reactive.Concurrency.CurrentThreadScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3268 <summary>
3269 Schedules an action to be executed after dueTime.
3270 </summary>
3271 <param name="state">State passed to the action to be executed.</param>
3272 <param name="action">Action to be executed.</param>
3273 <param name="dueTime">Relative time after which to execute the action.</param>
3274 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3275 </member>
3276 <member name="M:System.Reactive.Concurrency.CurrentThreadScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3277 <summary>
3278 Schedules an action to be executed at dueTime.
3279 </summary>
3280 <param name="state">State passed to the action to be executed.</param>
3281 <param name="action">Action to be executed.</param>
3282 <param name="dueTime">Absolute time at which to execute the action.</param>
3283 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3284 </member>
3285 <member name="P:System.Reactive.Concurrency.CurrentThreadScheduler.Now">
3286 <summary>
3287 Gets the scheduler's notion of current time.
3288 </summary>
3289 </member>
3290 <member name="P:System.Reactive.Concurrency.CurrentThreadScheduler.ScheduleRequired">
3291 <summary>
3292 Gets a value that indicates whether the caller must call a schedule method.
3293 </summary>
3294 </member>
3295 <member name="T:System.Reactive.Concurrency.EventLoopScheduler">
3296 <summary>
3297 Represents an object that schedules units of work on a designated thread.
3298 </summary>
3299 </member>
3300 <member name="M:System.Reactive.Concurrency.EventLoopScheduler.#ctor">
3301 <summary>
3302 Creates an object that schedules units of work on a designated thread.
3303 </summary>
3304 </member>
3305 <member name="M:System.Reactive.Concurrency.EventLoopScheduler.#ctor(System.Func{System.Threading.ThreadStart,System.Threading.Thread})">
3306 <summary>
3307 Creates an object that schedules units of work on a designated thread.
3308 </summary>
3309 <param name="threadFactory">Factory function for thread creation.</param>
3310 </member>
3311 <member name="M:System.Reactive.Concurrency.EventLoopScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3312 <summary>
3313 Schedules an action to be executed.
3314 </summary>
3315 <param name="state">State passed to the action to be executed.</param>
3316 <param name="action">Action to be executed.</param>
3317 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3318 </member>
3319 <member name="M:System.Reactive.Concurrency.EventLoopScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3320 <summary>
3321 Schedules an action to be executed after dueTime.
3322 </summary>
3323 <param name="state">State passed to the action to be executed.</param>
3324 <param name="action">Action to be executed.</param>
3325 <param name="dueTime">Relative time after which to execute the action.</param>
3326 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3327 </member>
3328 <member name="M:System.Reactive.Concurrency.EventLoopScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3329 <summary>
3330 Schedules an action to be executed at dueTime.
3331 </summary>
3332 <param name="state">State passed to the action to be executed.</param>
3333 <param name="action">Action to be executed.</param>
3334 <param name="dueTime">Absolute time at which to execute the action.</param>
3335 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3336 </member>
3337 <member name="M:System.Reactive.Concurrency.EventLoopScheduler.Dispose">
3338 <summary>
3339 Ends the thread associated with this scheduler.
3340 </summary>
3341 </member>
3342 <member name="P:System.Reactive.Concurrency.EventLoopScheduler.Now">
3343 <summary>
3344 Gets the scheduler's notion of current time.
3345 </summary>
3346 </member>
3347 <member name="T:System.Reactive.Concurrency.HistoricalSchedulerBase">
3348 <summary>
3349 Represents the base class for historical schedulers, virtual time schedulers that use DateTimeOffset for absolute time and TimeSpan for relative time.
3350 </summary>
3351 </member>
3352 <member name="T:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2">
3353 <summary>
3354 Represents the base class for virtual time schedulers.
3355 </summary>
3356 </member>
3357 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.#ctor">
3358 <summary>
3359 Creates a new virtual time scheduler with the default value of TAbsolute for the initial clock value.
3360 </summary>
3361 </member>
3362 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.#ctor(`0,System.Collections.Generic.IComparer{`0})">
3363 <summary>
3364 Creates a new virtual time scheduler.
3365 </summary>
3366 <param name="initialClock">Initial value for the clock.</param>
3367 <param name="comparer">Comparer to determine causality of events based on absolute time.</param>
3368 </member>
3369 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Add(`0,`1)">
3370 <summary>
3371 Adds a relative time to an absolute time value.
3372 </summary>
3373 <param name="absolute">Absolute time value.</param>
3374 <param name="relative">Relative time value to add.</param>
3375 <returns>The resulting absolute time sum value.</returns>
3376 </member>
3377 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.ToDateTimeOffset(`0)">
3378 <summary>
3379 Converts the absolute time value to a DateTimeOffset value.
3380 </summary>
3381 <param name="absolute">Absolute time value to convert.</param>
3382 <returns>The corresponding DateTimeOffset value.</returns>
3383 </member>
3384 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.ToRelative(System.TimeSpan)">
3385 <summary>
3386 Converts the TimeSpan value to a relative time value.
3387 </summary>
3388 <param name="timeSpan">TimeSpan value to convert.</param>
3389 <returns>The corresponding relative time value.</returns>
3390 </member>
3391 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.ScheduleAbsolute``1(``0,`0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3392 <summary>
3393 Schedules an action to be executed at dueTime.
3394 </summary>
3395 <param name="state">State passed to the action to be executed.</param>
3396 <param name="action">Action to be executed.</param>
3397 <param name="dueTime">Absolute time at which to execute the action.</param>
3398 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3399 </member>
3400 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.ScheduleRelative``1(``0,`1,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3401 <summary>
3402 Schedules an action to be executed at dueTime.
3403 </summary>
3404 <param name="state">State passed to the action to be executed.</param>
3405 <param name="action">Action to be executed.</param>
3406 <param name="dueTime">Relative time after which to execute the action.</param>
3407 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3408 </member>
3409 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3410 <summary>
3411 Schedules an action to be executed.
3412 </summary>
3413 <param name="state">State passed to the action to be executed.</param>
3414 <param name="action">Action to be executed.</param>
3415 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3416 </member>
3417 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3418 <summary>
3419 Schedules an action to be executed after dueTime.
3420 </summary>
3421 <param name="state">State passed to the action to be executed.</param>
3422 <param name="action">Action to be executed.</param>
3423 <param name="dueTime">Relative time after which to execute the action.</param>
3424 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3425 </member>
3426 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3427 <summary>
3428 Schedules an action to be executed at dueTime.
3429 </summary>
3430 <param name="state">State passed to the action to be executed.</param>
3431 <param name="action">Action to be executed.</param>
3432 <param name="dueTime">Absolute time at which to execute the action.</param>
3433 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3434 </member>
3435 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Start">
3436 <summary>
3437 Starts the virtual time scheduler.
3438 </summary>
3439 </member>
3440 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Stop">
3441 <summary>
3442 Stops the virtual time scheduler.
3443 </summary>
3444 </member>
3445 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.AdvanceTo(`0)">
3446 <summary>
3447 Advances the scheduler's clock to the specified time, running all work till that point.
3448 </summary>
3449 <param name="time">Absolute time to advance the scheduler's clock to.</param>
3450 </member>
3451 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.AdvanceBy(`1)">
3452 <summary>
3453 Advances the scheduler's clock by the specified relative time, running all work scheduled for that timespan.
3454 </summary>
3455 <param name="time">Relative time to advance the scheduler's clock by.</param>
3456 </member>
3457 <member name="M:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.GetNext">
3458 <summary>
3459 Gets the next scheduled item to be executed.
3460 </summary>
3461 <returns>The next scheduled item.</returns>
3462 </member>
3463 <member name="P:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.IsEnabled">
3464 <summary>
3465 Gets whether the scheduler is enabled to run work.
3466 </summary>
3467 </member>
3468 <member name="P:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Comparer">
3469 <summary>
3470 Gets the comparer used to compare absolute time values.
3471 </summary>
3472 </member>
3473 <member name="P:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Clock">
3474 <summary>
3475 Gets the scheduler's absolute time clock value.
3476 </summary>
3477 </member>
3478 <member name="P:System.Reactive.Concurrency.VirtualTimeSchedulerBase`2.Now">
3479 <summary>
3480 Gets the scheduler's notion of current time.
3481 </summary>
3482 </member>
3483 <member name="M:System.Reactive.Concurrency.HistoricalSchedulerBase.#ctor">
3484 <summary>
3485 Creates a new historical scheduler, using the minimum value of DateTimeOffset as the initial clock value.
3486 </summary>
3487 </member>
3488 <member name="M:System.Reactive.Concurrency.HistoricalSchedulerBase.Add(System.DateTimeOffset,System.TimeSpan)">
3489 <summary>
3490 Adds a relative time to an absolute time value.
3491 </summary>
3492 <param name="absolute">Absolute time value.</param>
3493 <param name="relative">Relative time value to add.</param>
3494 <returns>The resulting absolute time sum value.</returns>
3495 </member>
3496 <member name="M:System.Reactive.Concurrency.HistoricalSchedulerBase.ToDateTimeOffset(System.DateTimeOffset)">
3497 <summary>
3498 Converts the absolute time value to a DateTimeOffset value.
3499 </summary>
3500 <param name="absolute">Absolute time value to convert.</param>
3501 <returns>The corresponding DateTimeOffset value.</returns>
3502 </member>
3503 <member name="M:System.Reactive.Concurrency.HistoricalSchedulerBase.ToRelative(System.TimeSpan)">
3504 <summary>
3505 Converts the TimeSpan value to a relative time value.
3506 </summary>
3507 <param name="timeSpan">TimeSpan value to convert.</param>
3508 <returns>The corresponding relative time value.</returns>
3509 </member>
3510 <member name="T:System.Reactive.Concurrency.HistoricalScheduler">
3511 <summary>
3512 Provides a virtual time scheduler that uses DateTimeOffset for absolute time and TimeSpan for relative time.
3513 </summary>
3514 </member>
3515 <member name="M:System.Reactive.Concurrency.HistoricalScheduler.GetNext">
3516 <summary>
3517 Gets the next scheduled item to be executed.
3518 </summary>
3519 <returns>The next scheduled item.</returns>
3520 </member>
3521 <member name="M:System.Reactive.Concurrency.HistoricalScheduler.ScheduleAbsolute``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3522 <summary>
3523 Schedules an action to be executed at dueTime.
3524 </summary>
3525 <param name="state">State passed to the action to be executed.</param>
3526 <param name="action">Action to be executed.</param>
3527 <param name="dueTime">Absolute time at which to execute the action.</param>
3528 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3529 </member>
3530 <member name="T:System.Reactive.Concurrency.ImmediateScheduler">
3531 <summary>
3532 Represents an object that schedules units of work to run immediately on the current thread.
3533 </summary>
3534 <seealso cref="P:System.Reactive.Concurrency.Scheduler.Immediate">Singleton instance of this type exposed through this static property.</seealso>
3535 </member>
3536 <member name="M:System.Reactive.Concurrency.ImmediateScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3537 <summary>
3538 Schedules an action to be executed.
3539 </summary>
3540 <param name="state">State passed to the action to be executed.</param>
3541 <param name="action">Action to be executed.</param>
3542 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3543 </member>
3544 <member name="M:System.Reactive.Concurrency.ImmediateScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3545 <summary>
3546 Schedules an action to be executed after dueTime.
3547 </summary>
3548 <param name="state">State passed to the action to be executed.</param>
3549 <param name="action">Action to be executed.</param>
3550 <param name="dueTime">Relative time after which to execute the action.</param>
3551 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3552 </member>
3553 <member name="M:System.Reactive.Concurrency.ImmediateScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3554 <summary>
3555 Schedules an action to be executed at dueTime.
3556 </summary>
3557 <param name="state">State passed to the action to be executed.</param>
3558 <param name="action">Action to be executed.</param>
3559 <param name="dueTime">Absolute time at which to execute the action.</param>
3560 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3561 </member>
3562 <member name="P:System.Reactive.Concurrency.ImmediateScheduler.Now">
3563 <summary>
3564 Gets the scheduler's notion of current time.
3565 </summary>
3566 </member>
3567 <member name="T:System.Reactive.Concurrency.NewThreadScheduler">
3568 <summary>
3569 Represents an object that schedules each unit of work on a separate thread.
3570 </summary>
3571 <seealso cref="P:System.Reactive.Concurrency.Scheduler.NewThread">An instance of this type, with default thread creation options, is exposed through this static property.</seealso>
3572 </member>
3573 <member name="M:System.Reactive.Concurrency.NewThreadScheduler.#ctor">
3574 <summary>
3575 Creates an object that schedules each unit of work on a separate thread.
3576 </summary>
3577 </member>
3578 <member name="M:System.Reactive.Concurrency.NewThreadScheduler.#ctor(System.Func{System.Threading.ThreadStart,System.Threading.Thread})">
3579 <summary>
3580 Creates an object that schedules each unit of work on a separate thread.
3581 </summary>
3582 <param name="threadFactory">Factory function for thread creation.</param>
3583 </member>
3584 <member name="M:System.Reactive.Concurrency.NewThreadScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3585 <summary>
3586 Schedules an action to be executed.
3587 </summary>
3588 <param name="state">State passed to the action to be executed.</param>
3589 <param name="action">Action to be executed.</param>
3590 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3591 </member>
3592 <member name="M:System.Reactive.Concurrency.NewThreadScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3593 <summary>
3594 Schedules an action to be executed after dueTime.
3595 </summary>
3596 <param name="state">State passed to the action to be executed.</param>
3597 <param name="action">Action to be executed.</param>
3598 <param name="dueTime">Relative time after which to execute the action.</param>
3599 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3600 </member>
3601 <member name="M:System.Reactive.Concurrency.NewThreadScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3602 <summary>
3603 Schedules an action to be executed at dueTime.
3604 </summary>
3605 <param name="state">State passed to the action to be executed.</param>
3606 <param name="action">Action to be executed.</param>
3607 <param name="dueTime">Absolute time at which to execute the action.</param>
3608 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3609 </member>
3610 <member name="P:System.Reactive.Concurrency.NewThreadScheduler.Now">
3611 <summary>
3612 Gets the scheduler's notion of current time.
3613 </summary>
3614 </member>
3615 <member name="T:System.Reactive.Concurrency.IScheduledItem`1">
3616 <summary>
3617 Represents a work item that has been scheduled.
3618 </summary>
3619 </member>
3620 <member name="M:System.Reactive.Concurrency.IScheduledItem`1.Invoke">
3621 <summary>
3622 Invokes the work item.
3623 </summary>
3624 </member>
3625 <member name="P:System.Reactive.Concurrency.IScheduledItem`1.DueTime">
3626 <summary>
3627 Get the absolute time at which the item executes.
3628 </summary>
3629 </member>
3630 <member name="T:System.Reactive.Concurrency.Scheduler">
3631 <summary>
3632 Provides a set of static methods for creating Schedulers.
3633 </summary>
3634 </member>
3635 <member name="M:System.Reactive.Concurrency.Scheduler.Normalize(System.TimeSpan)">
3636 <summary>
3637 Ensures that no time spans are negative.
3638 </summary>
3639 <param name="timeSpan">The time span to normalize.</param>
3640 <returns>The time span if it zero or positive otherwise TimeSpan.Zero.</returns>
3641 </member>
3642 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler,System.Action)">
3643 <summary>
3644 Schedules an action to be executed.
3645 </summary>
3646 <param name="scheduler">Scheduler to execute the action on.</param>
3647 <param name="action">Action to execute.</param>
3648 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3649 </member>
3650 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler,System.TimeSpan,System.Action)">
3651 <summary>
3652 Schedules an action to be executed after dueTime.
3653 </summary>
3654 <param name="scheduler">Scheduler to execute the action on.</param>
3655 <param name="action">Action to execute.</param>
3656 <param name="dueTime">Relative time after which to execute the action.</param>
3657 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3658 </member>
3659 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler,System.DateTimeOffset,System.Action)">
3660 <summary>
3661 Schedules an action to be executed at dueTime.
3662 </summary>
3663 <param name="scheduler">Scheduler to execute the action on.</param>
3664 <param name="action">Action to execute.</param>
3665 <param name="dueTime">Absolute time at which to execute the action.</param>
3666 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3667 </member>
3668 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler,System.Action{System.Action})">
3669 <summary>
3670 Schedules an action to be executed recursively.
3671 </summary>
3672 <param name="scheduler">Scheduler to execute the recursive action on.</param>
3673 <param name="action">Action to execute recursively.</param>
3674 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3675 </member>
3676 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule``1(System.Reactive.Concurrency.IScheduler,``0,System.Action{``0,System.Action{``0}})">
3677 <summary>
3678 Schedules an action to be executed recursively.
3679 </summary>
3680 <param name="scheduler">Scheduler to execute the recursive action on.</param>
3681 <param name="state">State passed to the action to be executed.</param>
3682 <param name="action">Action to execute recursively.</param>
3683 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3684 </member>
3685 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler,System.TimeSpan,System.Action{System.Action{System.TimeSpan}})">
3686 <summary>
3687 Schedules an action to be executed recursively after each dueTime.
3688 </summary>
3689 <param name="scheduler">Scheduler to execute the recursive action on.</param>
3690 <param name="action">Action to execute recursively.</param>
3691 <param name="dueTime">Relative time after which to execute the action for the first time.</param>
3692 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3693 </member>
3694 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule``1(System.Reactive.Concurrency.IScheduler,``0,System.TimeSpan,System.Action{``0,System.Action{``0,System.TimeSpan}})">
3695 <summary>
3696 Schedules an action to be executed recursively after each dueTime.
3697 </summary>
3698 <param name="scheduler">Scheduler to execute the recursive action on.</param>
3699 <param name="state">State passed to the action to be executed.</param>
3700 <param name="action">Action to execute recursively.</param>
3701 <param name="dueTime">Relative time after which to execute the action for the first time.</param>
3702 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3703 </member>
3704 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler,System.DateTimeOffset,System.Action{System.Action{System.DateTimeOffset}})">
3705 <summary>
3706 Schedules an action to be executed recursively at each dueTime.
3707 </summary>
3708 <param name="scheduler">Scheduler to execute the recursive action on.</param>
3709 <param name="action">Action to execute recursively.</param>
3710 <param name="dueTime">Absolute time at which to execute the action for the first time.</param>
3711 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3712 </member>
3713 <member name="M:System.Reactive.Concurrency.Scheduler.Schedule``1(System.Reactive.Concurrency.IScheduler,``0,System.DateTimeOffset,System.Action{``0,System.Action{``0,System.DateTimeOffset}})">
3714 <summary>
3715 Schedules an action to be executed recursively at each dueTime.
3716 </summary>
3717 <param name="scheduler">Scheduler to execute the recursive action on.</param>
3718 <param name="state">State passed to the action to be executed.</param>
3719 <param name="action">Action to execute recursively.</param>
3720 <param name="dueTime">Absolute time at which to execute the action for the first time.</param>
3721 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3722 </member>
3723 <member name="P:System.Reactive.Concurrency.Scheduler.Now">
3724 <summary>
3725 Gets the current date and time.
3726 </summary>
3727 </member>
3728 <member name="P:System.Reactive.Concurrency.Scheduler.Immediate">
3729 <summary>
3730 Gets the scheduler that schedules work immediately on the current thread.
3731 </summary>
3732 </member>
3733 <member name="P:System.Reactive.Concurrency.Scheduler.CurrentThread">
3734 <summary>
3735 Gets the scheduler that schedules work as soon as possible on the current thread.
3736 </summary>
3737 </member>
3738 <member name="P:System.Reactive.Concurrency.Scheduler.ThreadPool">
3739 <summary>
3740 Gets the scheduler that schedules work on the ThreadPool.
3741 </summary>
3742 </member>
3743 <member name="P:System.Reactive.Concurrency.Scheduler.NewThread">
3744 <summary>
3745 Gets the scheduler that schedules work on a new thread.
3746 </summary>
3747 </member>
3748 <member name="T:System.Reactive.Concurrency.SynchronizationContextScheduler">
3749 <summary>
3750 Represents an object that schedules units of work on a provided SynchronizationContext.
3751 </summary>
3752 </member>
3753 <member name="M:System.Reactive.Concurrency.SynchronizationContextScheduler.#ctor(System.Threading.SynchronizationContext)">
3754 <summary>
3755 Creates an object that schedules units of work on the provided SynchronizationContext.
3756 </summary>
3757 <param name="context">Synchronization context to schedule units of work on.</param>
3758 </member>
3759 <member name="M:System.Reactive.Concurrency.SynchronizationContextScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3760 <summary>
3761 Schedules an action to be executed.
3762 </summary>
3763 <param name="state">State passed to the action to be executed.</param>
3764 <param name="action">Action to be executed.</param>
3765 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3766 </member>
3767 <member name="M:System.Reactive.Concurrency.SynchronizationContextScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3768 <summary>
3769 Schedules an action to be executed after dueTime.
3770 </summary>
3771 <param name="state">State passed to the action to be executed.</param>
3772 <param name="action">Action to be executed.</param>
3773 <param name="dueTime">Relative time after which to execute the action.</param>
3774 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3775 </member>
3776 <member name="M:System.Reactive.Concurrency.SynchronizationContextScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3777 <summary>
3778 Schedules an action to be executed at dueTime.
3779 </summary>
3780 <param name="state">State passed to the action to be executed.</param>
3781 <param name="action">Action to be executed.</param>
3782 <param name="dueTime">Absolute time at which to execute the action.</param>
3783 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3784 </member>
3785 <member name="P:System.Reactive.Concurrency.SynchronizationContextScheduler.Now">
3786 <summary>
3787 Gets the scheduler's notion of current time.
3788 </summary>
3789 </member>
3790 <member name="T:System.Reactive.Concurrency.ThreadPoolScheduler">
3791 <summary>
3792 Represents an object that schedules units of work on the threadpool.
3793 </summary>
3794 <seealso cref="P:System.Reactive.Concurrency.Scheduler.ThreadPool">Singleton instance of this type exposed through this static property.</seealso>
3795 </member>
3796 <member name="M:System.Reactive.Concurrency.ThreadPoolScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3797 <summary>
3798 Schedules an action to be executed.
3799 </summary>
3800 <param name="state">State passed to the action to be executed.</param>
3801 <param name="action">Action to be executed.</param>
3802 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3803 </member>
3804 <member name="M:System.Reactive.Concurrency.ThreadPoolScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3805 <summary>
3806 Schedules an action to be executed after dueTime, using a System.Threading.Timer object.
3807 </summary>
3808 <param name="state">State passed to the action to be executed.</param>
3809 <param name="action">Action to be executed.</param>
3810 <param name="dueTime">Relative time after which to execute the action.</param>
3811 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3812 </member>
3813 <member name="M:System.Reactive.Concurrency.ThreadPoolScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3814 <summary>
3815 Schedules an action to be executed at dueTime, using a System.Threading.Timer object.
3816 </summary>
3817 <param name="state">State passed to the action to be executed.</param>
3818 <param name="action">Action to be executed.</param>
3819 <param name="dueTime">Absolute time at which to execute the action.</param>
3820 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3821 </member>
3822 <member name="P:System.Reactive.Concurrency.ThreadPoolScheduler.Now">
3823 <summary>
3824 Gets the scheduler's notion of current time.
3825 </summary>
3826 </member>
3827 <member name="T:System.Reactive.Concurrency.VirtualTimeScheduler`2">
3828 <summary>
3829 Represents the base class for virtual time schedulers using a priority queue for scheduled items.
3830 </summary>
3831 </member>
3832 <member name="M:System.Reactive.Concurrency.VirtualTimeScheduler`2.#ctor">
3833 <summary>
3834 Creates a new virtual time scheduler with the default value of TAbsolute for the initial clock value.
3835 </summary>
3836 </member>
3837 <member name="M:System.Reactive.Concurrency.VirtualTimeScheduler`2.#ctor(`0,System.Collections.Generic.IComparer{`0})">
3838 <summary>
3839 Creates a new virtual time scheduler.
3840 </summary>
3841 <param name="initialClock">Initial value for the clock.</param>
3842 <param name="comparer">Comparer to determine causality of events based on absolute time.</param>
3843 </member>
3844 <member name="M:System.Reactive.Concurrency.VirtualTimeScheduler`2.GetNext">
3845 <summary>
3846 Gets the next scheduled item to be executed.
3847 </summary>
3848 <returns>The next scheduled item.</returns>
3849 </member>
3850 <member name="M:System.Reactive.Concurrency.VirtualTimeScheduler`2.ScheduleAbsolute``1(``0,`0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
3851 <summary>
3852 Schedules an action to be executed at dueTime.
3853 </summary>
3854 <param name="state">State passed to the action to be executed.</param>
3855 <param name="action">Action to be executed.</param>
3856 <param name="dueTime">Absolute time at which to execute the action.</param>
3857 <returns>The disposable object used to cancel the scheduled action (best effort).</returns>
3858 </member>
3859 <member name="T:System.Reactive.Disposables.AnonymousDisposable">
3860 <summary>
3861 Represents an Action-based disposable.
3862 </summary>
3863 </member>
3864 <member name="M:System.Reactive.Disposables.AnonymousDisposable.#ctor(System.Action)">
3865 <summary>
3866 Constructs a new disposable with the given action used for disposal.
3867 </summary>
3868 <param name="dispose">Disposal action.</param>
3869 </member>
3870 <member name="M:System.Reactive.Disposables.AnonymousDisposable.Dispose">
3871 <summary>
3872 Calls the disposal action.
3873 </summary>
3874 </member>
3875 <member name="T:System.Reactive.Disposables.BooleanDisposable">
3876 <summary>
3877 Represents an IDisposable that can be checked for status.
3878 </summary>
3879 </member>
3880 <member name="M:System.Reactive.Disposables.BooleanDisposable.#ctor">
3881 <summary>
3882 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.BooleanDisposable"/> class.
3883 </summary>
3884 </member>
3885 <member name="M:System.Reactive.Disposables.BooleanDisposable.Dispose">
3886 <summary>
3887 Sets the status to Disposed.
3888 </summary>
3889 </member>
3890 <member name="P:System.Reactive.Disposables.BooleanDisposable.IsDisposed">
3891 <summary>
3892 Gets a value that indicates whether the object is disposed.
3893 </summary>
3894 </member>
3895 <member name="T:System.Reactive.Disposables.CompositeDisposable">
3896 <summary>
3897 Represents a group of Disposables that are disposed together.
3898 </summary>
3899 </member>
3900 <member name="M:System.Reactive.Disposables.CompositeDisposable.#ctor">
3901 <summary>
3902 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.CompositeDisposable"/> class from a group of disposables.
3903 </summary>
3904 </member>
3905 <member name="M:System.Reactive.Disposables.CompositeDisposable.#ctor(System.Int32)">
3906 <summary>
3907 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.CompositeDisposable"/> class with the specified number of disposables.
3908 </summary>
3909 <param name="capacity">The number of disposables that the new CompositeDisposable can initially store.</param>
3910 </member>
3911 <member name="M:System.Reactive.Disposables.CompositeDisposable.#ctor(System.IDisposable[])">
3912 <summary>
3913 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.CompositeDisposable"/> class from a group of disposables.
3914 </summary>
3915 <param name="disposables">Disposables that will be disposed together.</param>
3916 </member>
3917 <member name="M:System.Reactive.Disposables.CompositeDisposable.#ctor(System.Collections.Generic.IEnumerable{System.IDisposable})">
3918 <summary>
3919 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.CompositeDisposable"/> class from a group of disposables.
3920 </summary>
3921 <param name="disposables">Disposables that will be disposed together.</param>
3922 </member>
3923 <member name="M:System.Reactive.Disposables.CompositeDisposable.Add(System.IDisposable)">
3924 <summary>
3925 Adds a disposable to the CompositeDisposable or disposes the disposable if the CompositeDisposable is disposed.
3926 </summary>
3927 <param name="item">Disposable to add.</param>
3928 </member>
3929 <member name="M:System.Reactive.Disposables.CompositeDisposable.Remove(System.IDisposable)">
3930 <summary>
3931 Removes and disposes the first occurrence of a disposable from the CompositeDisposable.
3932 </summary>
3933 <param name="item">Disposable to remove.</param>
3934 </member>
3935 <member name="M:System.Reactive.Disposables.CompositeDisposable.Dispose">
3936 <summary>
3937 Disposes all disposables in the group and removes them from the group.
3938 </summary>
3939 </member>
3940 <member name="M:System.Reactive.Disposables.CompositeDisposable.Clear">
3941 <summary>
3942 Removes and disposes all disposables from the GroupDisposable, but does not dispose the CompositeDisposable.
3943 </summary>
3944 </member>
3945 <member name="M:System.Reactive.Disposables.CompositeDisposable.Contains(System.IDisposable)">
3946 <summary>
3947 Determines whether the CompositeDisposable contains a specific disposable.
3948 </summary>
3949 <param name="item">Disposable to search for.</param>
3950 <returns>true if the disposable was found; otherwise, false.</returns>
3951 </member>
3952 <member name="M:System.Reactive.Disposables.CompositeDisposable.CopyTo(System.IDisposable[],System.Int32)">
3953 <summary>
3954 Copies the disposables contained in the CompositeDisposable to an array, starting at a particular array index.
3955 </summary>
3956 <param name="array">Array to copy the contained disposables to.</param>
3957 <param name="arrayIndex">Target index at which to copy the first disposable of the group.</param>
3958 </member>
3959 <member name="M:System.Reactive.Disposables.CompositeDisposable.GetEnumerator">
3960 <summary>
3961 Returns an enumerator that iterates through the CompositeDisposable.
3962 </summary>
3963 <returns>An enumerator to iterate over the disposables.</returns>
3964 </member>
3965 <member name="M:System.Reactive.Disposables.CompositeDisposable.System#Collections#IEnumerable#GetEnumerator">
3966 <summary>
3967 Returns an enumerator that iterates through the CompositeDisposable.
3968 </summary>
3969 <returns>An enumerator to iterate over the disposables.</returns>
3970 </member>
3971 <member name="P:System.Reactive.Disposables.CompositeDisposable.Count">
3972 <summary>
3973 Gets the number of disposables contained in the CompositeDisposable.
3974 </summary>
3975 </member>
3976 <member name="P:System.Reactive.Disposables.CompositeDisposable.IsReadOnly">
3977 <summary>
3978 Always returns false.
3979 </summary>
3980 </member>
3981 <member name="P:System.Reactive.Disposables.CompositeDisposable.IsDisposed">
3982 <summary>
3983 Gets a value that indicates whether the object is disposed.
3984 </summary>
3985 </member>
3986 <member name="T:System.Reactive.Disposables.ContextDisposable">
3987 <summary>
3988 Represents a thread-affine IDisposable.
3989 </summary>
3990 </member>
3991 <member name="M:System.Reactive.Disposables.ContextDisposable.#ctor(System.Threading.SynchronizationContext,System.IDisposable)">
3992 <summary>
3993 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.ContextDisposable"/> class that uses a SynchronizationContext on which to dispose the disposable.
3994 </summary>
3995 <param name="context">Context to perform disposal on.</param>
3996 <param name="disposable">Disposable whose Dispose operation to run on the given synchronization context.</param>
3997 </member>
3998 <member name="M:System.Reactive.Disposables.ContextDisposable.Dispose">
3999 <summary>
4000 Disposes the wrapped disposable on the provided SynchronizationContext.
4001 </summary>
4002 </member>
4003 <member name="P:System.Reactive.Disposables.ContextDisposable.Context">
4004 <summary>
4005 Gets the provided SynchronizationContext.
4006 </summary>
4007 </member>
4008 <member name="P:System.Reactive.Disposables.ContextDisposable.IsDisposed">
4009 <summary>
4010 Gets a value that indicates whether the object is disposed.
4011 </summary>
4012 </member>
4013 <member name="T:System.Reactive.Disposables.DefaultDisposable">
4014 <summary>
4015 Represents a disposable that does nothing on disposal.
4016 </summary>
4017 </member>
4018 <member name="F:System.Reactive.Disposables.DefaultDisposable.Instance">
4019 <summary>
4020 Singleton default disposable.
4021 </summary>
4022 </member>
4023 <member name="M:System.Reactive.Disposables.DefaultDisposable.Dispose">
4024 <summary>
4025 Does nothing.
4026 </summary>
4027 </member>
4028 <member name="T:System.Reactive.Disposables.Disposable">
4029 <summary>
4030 Provides a set of static methods for creating Disposables.
4031 </summary>
4032 </member>
4033 <member name="M:System.Reactive.Disposables.Disposable.Create(System.Action)">
4034 <summary>
4035 Creates the disposable that invokes the specified action when disposed.
4036 </summary>
4037 <param name="dispose">Action to run during IDisposable.Dispose.</param>
4038 <returns>The disposable object that runs the given action upon disposal.</returns>
4039 </member>
4040 <member name="P:System.Reactive.Disposables.Disposable.Empty">
4041 <summary>
4042 Gets the disposable that does nothing when disposed.
4043 </summary>
4044 </member>
4045 <member name="T:System.Reactive.Disposables.MultipleAssignmentDisposable">
4046 <summary>
4047 Represents a disposable whose underlying disposable can be swapped for another disposable.
4048 </summary>
4049 </member>
4050 <member name="M:System.Reactive.Disposables.MultipleAssignmentDisposable.#ctor">
4051 <summary>
4052 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.MultipleAssignmentDisposable"/> class with no current underlying disposable.
4053 </summary>
4054 </member>
4055 <member name="M:System.Reactive.Disposables.MultipleAssignmentDisposable.Dispose">
4056 <summary>
4057 Disposes the underlying disposable as well as all future replacements.
4058 </summary>
4059 </member>
4060 <member name="P:System.Reactive.Disposables.MultipleAssignmentDisposable.IsDisposed">
4061 <summary>
4062 Gets a value that indicates whether the object is disposed.
4063 </summary>
4064 </member>
4065 <member name="P:System.Reactive.Disposables.MultipleAssignmentDisposable.Disposable">
4066 <summary>
4067 Gets or sets the underlying disposable.
4068 </summary>
4069 <remarks>If the MutableDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object.</remarks>
4070 </member>
4071 <member name="T:System.Reactive.Disposables.RefCountDisposable">
4072 <summary>
4073 Represents a disposable that only disposes its underlying disposable when all dependent disposables have been disposed.
4074 </summary>
4075 </member>
4076 <member name="M:System.Reactive.Disposables.RefCountDisposable.#ctor(System.IDisposable)">
4077 <summary>
4078 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.RefCountDisposable"/> class with the specified disposable.
4079 </summary>
4080 <param name="disposable">Underlying disposable.</param>
4081 </member>
4082 <member name="M:System.Reactive.Disposables.RefCountDisposable.Dispose">
4083 <summary>
4084 Disposes the underlying disposable only when all dependent disposables have been disposed.
4085 </summary>
4086 </member>
4087 <member name="M:System.Reactive.Disposables.RefCountDisposable.GetDisposable">
4088 <summary>
4089 Returns a dependent disposable that when disposed decreases the refcount on the underlying disposable.
4090 </summary>
4091 <returns>A dependent disposable contributing to the reference count that manages the underlying disposable's lifetime.</returns>
4092 </member>
4093 <member name="P:System.Reactive.Disposables.RefCountDisposable.IsDisposed">
4094 <summary>
4095 Gets a value that indicates whether the object is disposed.
4096 </summary>
4097 </member>
4098 <member name="T:System.Reactive.Disposables.ScheduledDisposable">
4099 <summary>
4100 Represents an object that schedules units of work on a provided scheduler.
4101 </summary>
4102 </member>
4103 <member name="M:System.Reactive.Disposables.ScheduledDisposable.#ctor(System.Reactive.Concurrency.IScheduler,System.IDisposable)">
4104 <summary>
4105 Initializes a new instance of the <see cref="T:System.Reactive.Disposables.ScheduledDisposable"/> class that uses a scheduler on which to dispose the disposable.
4106 </summary>
4107 </member>
4108 <member name="M:System.Reactive.Disposables.ScheduledDisposable.Dispose">
4109 <summary>
4110 Disposes the wrapped disposable on the provided scheduler.
4111 </summary>
4112 </member>
4113 <member name="P:System.Reactive.Disposables.ScheduledDisposable.Disposable">
4114 <summary>
4115 Gets a value that indicates the underlying disposable.
4116 </summary>
4117 </member>
4118 <member name="P:System.Reactive.Disposables.ScheduledDisposable.Scheduler">
4119 <summary>
4120 Gets a value that indicates the scheduler.
4121 </summary>
4122 </member>
4123 <member name="P:System.Reactive.Disposables.ScheduledDisposable.IsDisposed">
4124 <summary>
4125 Gets a value that indicates whether the object is disposed.
4126 </summary>
4127 </member>
4128 <member name="T:System.Reactive.Subjects.ConnectableObservable`2">
4129 <summary>
4130 Represents an observable that can be connected and disconnected from its source.
4131 </summary>
4132 </member>
4133 <member name="T:System.Reactive.Subjects.IConnectableObservable`1">
4134 <summary>
4135 Represents an observable that can be connected and disconnected.
4136 </summary>
4137 </member>
4138 <member name="M:System.Reactive.Subjects.IConnectableObservable`1.Connect">
4139 <summary>
4140 Connects the observable.
4141 </summary>
4142 <returns>IDisposable object used to disconnect the observable.</returns>
4143 </member>
4144 <member name="M:System.Reactive.Subjects.ConnectableObservable`2.#ctor(System.IObservable{`0},System.Reactive.Subjects.ISubject{`0,`1})">
4145 <summary>
4146 Creates an observable that can be connected and disconnected from its source.
4147 </summary>
4148 </member>
4149 <member name="M:System.Reactive.Subjects.ConnectableObservable`2.Connect">
4150 <summary>
4151 Connects the observable to its source.
4152 </summary>
4153 </member>
4154 <member name="M:System.Reactive.Subjects.ConnectableObservable`2.Subscribe(System.IObserver{`1})">
4155 <summary>
4156 Subscribes an observer to the observable sequence.
4157 </summary>
4158 </member>
4159 <member name="T:System.Reactive.Subjects.Subject">
4160 <summary>
4161 Provides a set of static methods for creating observers.
4162 </summary>
4163 </member>
4164 <member name="M:System.Reactive.Subjects.Subject.Create``2(System.IObserver{``0},System.IObservable{``1})">
4165 <summary>
4166 Creates a subject from the specified observer and observable.
4167 </summary>
4168 <param name="observer">The observer used to publish messages to the subject.</param>
4169 <param name="observable">The observable used to subscribe to messages sent from the subject.</param>
4170 <returns>Subject implemented using the given observer and observable.</returns>
4171 </member>
4172 <member name="M:System.Reactive.Subjects.Subject.Synchronize``2(System.Reactive.Subjects.ISubject{``0,``1})">
4173 <summary>
4174 Synchronizes the messages on the subject.
4175 </summary>
4176 <param name="subject">The subject to synchronize.</param>
4177 <returns>Subject whose messages are synchronized.</returns>
4178 </member>
4179 <member name="M:System.Reactive.Subjects.Subject.Synchronize``2(System.Reactive.Subjects.ISubject{``0,``1},System.Reactive.Concurrency.IScheduler)">
4180 <summary>
4181 Synchronizes the messages on the subject and notifies observers on the specified scheduler.
4182 </summary>
4183 <param name="subject">The subject to synchronize.</param>
4184 <param name="scheduler">Scheduler to notify observers on.</param>
4185 <returns>Subject whose messages are synchronized and whose observers are notified on the given scheduler.</returns>
4186 </member>
4187 <member name="T:System.Reactive.Subjects.ISubject`2">
4188 <summary>
4189 Represents an object that is both an observable sequence as well as an observer.
4190 </summary>
4191 </member>
4192 <member name="T:System.Reactive.Subjects.AsyncSubject`1">
4193 <summary>
4194 Represents the result of an asynchronous operation.
4195 </summary>
4196 </member>
4197 <member name="T:System.Reactive.Subjects.ISubject`1">
4198 <summary>
4199 Represents an object that is both an observable sequence as well as an observer.
4200 </summary>
4201 </member>
4202 <member name="M:System.Reactive.Subjects.AsyncSubject`1.#ctor">
4203 <summary>
4204 Creates a subject that can only receive one value and that value is cached for all future observations.
4205 </summary>
4206 </member>
4207 <member name="M:System.Reactive.Subjects.AsyncSubject`1.OnCompleted">
4208 <summary>
4209 Notifies all subscribed observers of the end of the sequence, also causing the last received value to be sent out (if any).
4210 </summary>
4211 </member>
4212 <member name="M:System.Reactive.Subjects.AsyncSubject`1.OnError(System.Exception)">
4213 <summary>
4214 Notifies all subscribed observers with the exception.
4215 </summary>
4216 <param name="error">The exception to send to all subscribed observers.</param>
4217 </member>
4218 <member name="M:System.Reactive.Subjects.AsyncSubject`1.OnNext(`0)">
4219 <summary>
4220 Sends a value to the subject. The last value received before successful termination will be sent to all subscribed observers.
4221 </summary>
4222 <param name="value">The value to store in the subject.</param>
4223 </member>
4224 <member name="M:System.Reactive.Subjects.AsyncSubject`1.Subscribe(System.IObserver{`0})">
4225 <summary>
4226 Subscribes an observer to the subject.
4227 </summary>
4228 <param name="observer">Observer to subscribe to the subject.</param>
4229 <remarks>IDisposable object that can be used to unsubscribe the observer from the subject.</remarks>
4230 </member>
4231 <member name="M:System.Reactive.Subjects.AsyncSubject`1.Dispose">
4232 <summary>
4233 Unsubscribe all observers and release resources.
4234 </summary>
4235 </member>
4236 <member name="T:System.Reactive.Subjects.BehaviorSubject`1">
4237 <summary>
4238 Represents a value that changes over time.
4239 </summary>
4240 </member>
4241 <member name="M:System.Reactive.Subjects.BehaviorSubject`1.#ctor(`0)">
4242 <summary>
4243 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.BehaviorSubject`1"/> class which creates a subject that caches its last value and starts with the specified value.
4244 </summary>
4245 <param name="value">Initial value sent to observers when no other value has been received by the subject yet.</param>
4246 </member>
4247 <member name="M:System.Reactive.Subjects.BehaviorSubject`1.OnCompleted">
4248 <summary>
4249 Notifies all subscribed observers of the end of the sequence.
4250 </summary>
4251 </member>
4252 <member name="M:System.Reactive.Subjects.BehaviorSubject`1.OnError(System.Exception)">
4253 <summary>
4254 Notifies all subscribed observers with the exception.
4255 </summary>
4256 <param name="error">The exception to send to all subscribed observers.</param>
4257 </member>
4258 <member name="M:System.Reactive.Subjects.BehaviorSubject`1.OnNext(`0)">
4259 <summary>
4260 Notifies all subscribed observers with the value.
4261 </summary>
4262 <param name="value">The value to send to all subscribed observers.</param>
4263 </member>
4264 <member name="M:System.Reactive.Subjects.BehaviorSubject`1.Subscribe(System.IObserver{`0})">
4265 <summary>
4266 Subscribes an observer to the subject.
4267 </summary>
4268 <param name="observer">Observer to subscribe to the subject.</param>
4269 <remarks>IDisposable object that can be used to unsubscribe the observer from the subject.</remarks>
4270 </member>
4271 <member name="M:System.Reactive.Subjects.BehaviorSubject`1.Dispose">
4272 <summary>
4273 Unsubscribe all observers and release resources.
4274 </summary>
4275 </member>
4276 <member name="T:System.Reactive.Subjects.Subject`1">
4277 <summary>
4278 Represents an object that is both an observable sequence as well as an observer.
4279 </summary>
4280 <remarks>Fast subjects do not synchronize outgoing calls to subcribed observers using a scheduler. If you need such guarantees, use regular subjects instead.</remarks>
4281 <seealso cref="T:Subject"/>
4282 </member>
4283 <member name="M:System.Reactive.Subjects.Subject`1.#ctor">
4284 <summary>
4285 Creates a subject.
4286 </summary>
4287 </member>
4288 <member name="M:System.Reactive.Subjects.Subject`1.OnCompleted">
4289 <summary>
4290 Notifies all subscribed observers of the end of the sequence.
4291 </summary>
4292 </member>
4293 <member name="M:System.Reactive.Subjects.Subject`1.OnError(System.Exception)">
4294 <summary>
4295 Notifies all subscribed observers with the exception.
4296 </summary>
4297 <param name="error">The exception to send to all subscribed observers.</param>
4298 </member>
4299 <member name="M:System.Reactive.Subjects.Subject`1.OnNext(`0)">
4300 <summary>
4301 Notifies all subscribed observers with the value.
4302 </summary>
4303 <param name="value">The value to send to all subscribed observers.</param>
4304 </member>
4305 <member name="M:System.Reactive.Subjects.Subject`1.Subscribe(System.IObserver{`0})">
4306 <summary>
4307 Subscribes an observer to the subject.
4308 </summary>
4309 <param name="observer">Observer to subscribe to the subject.</param>
4310 <remarks>IDisposable object that can be used to unsubscribe the observer from the subject.</remarks>
4311 </member>
4312 <member name="M:System.Reactive.Subjects.Subject`1.Dispose">
4313 <summary>
4314 Unsubscribe all observers and release resources.
4315 </summary>
4316 </member>
4317 <member name="T:System.Reactive.Linq.IGroupedObservable`2">
4318 <summary>
4319 Represents an observable sequence of values that have a common key.
4320 </summary>
4321 </member>
4322 <member name="P:System.Reactive.Linq.IGroupedObservable`2.Key">
4323 <summary>
4324 Gets the common key.
4325 </summary>
4326 </member>
4327 <member name="T:System.Reactive.Joins.Pattern">
4328 <summary>
4329 Represents a join pattern.
4330 </summary>
4331 </member>
4332 <member name="T:System.Reactive.Joins.Pattern`1">
4333 <summary>
4334 Represents a join pattern.
4335 </summary>
4336 </member>
4337 <member name="M:System.Reactive.Joins.Pattern`1.Then``1(System.Func{`0,``0})">
4338 <summary>
4339 Matches when all observable sequences have an available value and projects the values.
4340 </summary>
4341 </member>
4342 <member name="T:System.Reactive.Joins.Pattern`2">
4343 <summary>
4344 Represents a join pattern.
4345 </summary>
4346 </member>
4347 <member name="M:System.Reactive.Joins.Pattern`2.And``1(System.IObservable{``0})">
4348 <summary>
4349 Matches when all observable sequences have an available value.
4350 </summary>
4351 </member>
4352 <member name="M:System.Reactive.Joins.Pattern`2.Then``1(System.Func{`0,`1,``0})">
4353 <summary>
4354 Matches when all observable sequences have an available value and projects the values.
4355 </summary>
4356 </member>
4357 <member name="T:System.Reactive.Joins.Pattern`3">
4358 <summary>
4359 Represents a join pattern.
4360 </summary>
4361 </member>
4362 <member name="M:System.Reactive.Joins.Pattern`3.And``1(System.IObservable{``0})">
4363 <summary>
4364 Matches when all observable sequences have an available value.
4365 </summary>
4366 </member>
4367 <member name="M:System.Reactive.Joins.Pattern`3.Then``1(System.Func{`0,`1,`2,``0})">
4368 <summary>
4369 Matches when all observable sequences have an available value and projects the values.
4370 </summary>
4371 </member>
4372 <member name="T:System.Reactive.Joins.Pattern`4">
4373 <summary>
4374 Represents a join pattern.
4375 </summary>
4376 </member>
4377 <member name="M:System.Reactive.Joins.Pattern`4.Then``1(System.Func{`0,`1,`2,`3,``0})">
4378 <summary>
4379 Matches when all observable sequences have an available value and projects the values.
4380 </summary>
4381 </member>
4382 <member name="T:System.Reactive.Joins.Plan`1">
4383 <summary>
4384 Represents an execution plan for join patterns.
4385 </summary>
4386 </member>
4387 <member name="T:System.ObservableExtensions">
4388 <summary>
4389 Provides a set of static methods for subscribing delegates to observables.
4390 </summary>
4391 </member>
4392 <member name="M:System.ObservableExtensions.Subscribe``1(System.IObservable{``0})">
4393 <summary>
4394 Evaluates the observable sequence.
4395 </summary>
4396 <param name="source">Observable sequence to subscribe to.</param>
4397 <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
4398 </member>
4399 <member name="M:System.ObservableExtensions.Subscribe``1(System.IObservable{``0},System.Action{``0})">
4400 <summary>
4401 Subscribes an element handler to an observable sequence.
4402 </summary>
4403 <param name="source">Observable sequence to subscribe to.</param>
4404 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
4405 <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
4406 </member>
4407 <member name="M:System.ObservableExtensions.Subscribe``1(System.IObservable{``0},System.Action{``0},System.Action{System.Exception})">
4408 <summary>
4409 Subscribes an element handler and an exception handler to an observable sequence.
4410 </summary>
4411 <param name="source">Observable sequence to subscribe to.</param>
4412 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
4413 <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
4414 <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
4415 </member>
4416 <member name="M:System.ObservableExtensions.Subscribe``1(System.IObservable{``0},System.Action{``0},System.Action)">
4417 <summary>
4418 Subscribes an element handler and a completion handler to an observable sequence.
4419 </summary>
4420 <param name="source">Observable sequence to subscribe to.</param>
4421 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
4422 <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
4423 <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
4424 </member>
4425 <member name="M:System.ObservableExtensions.Subscribe``1(System.IObservable{``0},System.Action{``0},System.Action{System.Exception},System.Action)">
4426 <summary>
4427 Subscribes an element handler, an exception handler, and a completion handler to an observable sequence.
4428 </summary>
4429 <param name="source">Observable sequence to subscribe to.</param>
4430 <param name="onNext">Action to invoke for each element in the observable sequence.</param>
4431 <param name="onError">Action to invoke upon exceptional termination of the observable sequence.</param>
4432 <param name="onCompleted">Action to invoke upon graceful termination of the observable sequence.</param>
4433 <returns>IDisposable object used to unsubscribe from the observable sequence.</returns>
4434 </member>
4435 <member name="T:System.Reactive.Observer">
4436 <summary>
4437 Provides a set of static methods for creating observers.
4438 </summary>
4439 </member>
4440 <member name="M:System.Reactive.Observer.ToObserver``1(System.Action{System.Reactive.Notification{``0}})">
4441 <summary>
4442 Creates an observer from a notification callback.
4443 </summary>
4444 <param name="handler">Action that handles a notification.</param>
4445 <returns>The observer object that invokes the specified handler using a notification corresponding to each message it receives.</returns>
4446 </member>
4447 <member name="M:System.Reactive.Observer.ToNotifier``1(System.IObserver{``0})">
4448 <summary>
4449 Creates a notification callback from an observer.
4450 </summary>
4451 <param name="observer">Observer object.</param>
4452 <returns>The action that forwards its input notification to the underlying observer.</returns>
4453 </member>
4454 <member name="M:System.Reactive.Observer.Create``1(System.Action{``0})">
4455 <summary>
4456 Creates an observer from the specified OnNext action.
4457 </summary>
4458 <param name="onNext">Observer's OnNext action implementation.</param>
4459 <returns>The observer object implemented using the given actions.</returns>
4460 </member>
4461 <member name="M:System.Reactive.Observer.Create``1(System.Action{``0},System.Action{System.Exception})">
4462 <summary>
4463 Creates an observer from the specified OnNext and OnError actions.
4464 </summary>
4465 <param name="onNext">Observer's OnNext action implementation.</param>
4466 <param name="onError">Observer's OnError action implementation.</param>
4467 <returns>The observer object implemented using the given actions.</returns>
4468 </member>
4469 <member name="M:System.Reactive.Observer.Create``1(System.Action{``0},System.Action)">
4470 <summary>
4471 Creates an observer from the specified OnNext and OnCompleted actions.
4472 </summary>
4473 <param name="onNext">Observer's OnNext action implementation.</param>
4474 <param name="onCompleted">Observer's OnCompleted action implementation.</param>
4475 <returns>The observer object implemented using the given actions.</returns>
4476 </member>
4477 <member name="M:System.Reactive.Observer.Create``1(System.Action{``0},System.Action{System.Exception},System.Action)">
4478 <summary>
4479 Creates an observer from the specified OnNext, OnError, and OnCompleted actions.
4480 </summary>
4481 <param name="onNext">Observer's OnNext action implementation.</param>
4482 <param name="onError">Observer's OnError action implementation.</param>
4483 <param name="onCompleted">Observer's OnCompleted action implementation.</param>
4484 <returns>The observer object implemented using the given actions.</returns>
4485 </member>
4486 <member name="M:System.Reactive.Observer.AsObserver``1(System.IObserver{``0})">
4487 <summary>
4488 Hides the identity of an observer.
4489 </summary>
4490 <param name="observer">An observer whose identity to hide.</param>
4491 <returns>An observer that hides the identity of the specified observer.</returns>
4492 </member>
4493 <member name="M:System.Reactive.Observer.Synchronize``1(System.IObserver{``0},System.Object)">
4494 <summary>
4495 Synchronizes the observer messages.
4496 </summary>
4497 <param name="observer">The observer to synchronize.</param>
4498 <param name="gate">Gate object to synchronize each observer call on.</param>
4499 <returns>The observer whose messages are synchronized on the given gate object.</returns>
4500 </member>
4501 <member name="M:System.Reactive.Observer.Synchronize``1(System.IObserver{``0})">
4502 <summary>
4503 Synchronizes the observer messages.
4504 </summary>
4505 <param name="observer">The observer to synchronize.</param>
4506 <returns>The observer whose messages are synchronized.</returns>
4507 </member>
4508 <member name="T:System.Reactive.Subjects.ReplaySubject`1">
4509 <summary>
4510 Represents an object that is both an observable sequence as well as an observer.
4511 </summary>
4512 <remarks>Regular subjects do synchronize outgoing calls to subcribed observers using a scheduler. If you don't need such guarantees, use Fast* subjects instead.</remarks>
4513 </member>
4514 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.Int32,System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
4515 <summary>
4516 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified buffer size, window and scheduler.
4517 </summary>
4518 <param name="bufferSize">Maximum element count of the replay buffer.</param>
4519 <param name="window">Maximum time length of the replay buffer.</param>
4520 <param name="scheduler">Scheduler the observers are invoked on.</param>
4521 </member>
4522 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.Int32,System.TimeSpan)">
4523 <summary>
4524 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified buffer size and window.
4525 </summary>
4526 <param name="bufferSize">Maximum element count of the replay buffer.</param>
4527 <param name="window">Maximum time length of the replay buffer.</param>
4528 </member>
4529 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor">
4530 <summary>
4531 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class.
4532 </summary>
4533 </member>
4534 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.Reactive.Concurrency.IScheduler)">
4535 <summary>
4536 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified scheduler.
4537 </summary>
4538 <param name="scheduler">Scheduler the observers are invoked on.</param>
4539 </member>
4540 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.Int32,System.Reactive.Concurrency.IScheduler)">
4541 <summary>
4542 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified buffer size and scheduler.
4543 </summary>
4544 <param name="bufferSize">Maximum element count of the replay buffer.</param>
4545 <param name="scheduler">Scheduler the observers are invoked on.</param>
4546 </member>
4547 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.Int32)">
4548 <summary>
4549 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified buffer size.
4550 </summary>
4551 <param name="bufferSize">Maximum element count of the replay buffer.</param>
4552 </member>
4553 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.TimeSpan,System.Reactive.Concurrency.IScheduler)">
4554 <summary>
4555 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified window and scheduler.
4556 </summary>
4557 <param name="window">Maximum time length of the replay buffer.</param>
4558 <param name="scheduler">Scheduler the observers are invoked on.</param>
4559 </member>
4560 <member name="M:System.Reactive.Subjects.ReplaySubject`1.#ctor(System.TimeSpan)">
4561 <summary>
4562 Initializes a new instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1" /> class with the specified window.
4563 </summary>
4564 <param name="window">Maximum time length of the replay buffer.</param>
4565 </member>
4566 <member name="M:System.Reactive.Subjects.ReplaySubject`1.OnNext(`0)">
4567 <summary>
4568 Notifies all subscribed observers with the value.
4569 </summary>
4570 <param name="value">The value to send to all subscribed observers.</param>
4571 </member>
4572 <member name="M:System.Reactive.Subjects.ReplaySubject`1.OnError(System.Exception)">
4573 <summary>
4574 Notifies all subscribed observers with the exception.
4575 </summary>
4576 <param name="error">The exception to send to all subscribed observers.</param>
4577 </member>
4578 <member name="M:System.Reactive.Subjects.ReplaySubject`1.OnCompleted">
4579 <summary>
4580 Notifies all subscribed observers of the end of the sequence.
4581 </summary>
4582 </member>
4583 <member name="M:System.Reactive.Subjects.ReplaySubject`1.Subscribe(System.IObserver{`0})">
4584 <summary>
4585 Subscribes an observer to the subject.
4586 </summary>
4587 <param name="observer">Observer to subscribe to the subject.</param>
4588 <remarks>IDisposable object that can be used to unsubscribe the observer from the subject.</remarks>
4589 </member>
4590 <member name="M:System.Reactive.Subjects.ReplaySubject`1.Dispose">
4591 <summary>
4592 Releases all resources used by the current instance of the <see cref="T:System.Reactive.Subjects.ReplaySubject`1"/> class and unsubscribe all observers.
4593 </summary>
4594 </member>
4595 <member name="T:System.Reactive.TimeInterval`1">
4596 <summary>
4597 Represents a time interval value.
4598 </summary>
4599 </member>
4600 <member name="M:System.Reactive.TimeInterval`1.#ctor(`0,System.TimeSpan)">
4601 <summary>
4602 Constructs a timestamped value.
4603 </summary>
4604 </member>
4605 <member name="M:System.Reactive.TimeInterval`1.Equals(System.Object)">
4606 <summary>
4607 Indicates whether this instance and a specified object are equal.
4608 </summary>
4609 </member>
4610 <member name="M:System.Reactive.TimeInterval`1.GetHashCode">
4611 <summary>
4612 Returns the hash code for this instance.
4613 </summary>
4614 </member>
4615 <member name="M:System.Reactive.TimeInterval`1.ToString">
4616 <summary>
4617 Returns a string representation of this instance.
4618 </summary>
4619 </member>
4620 <member name="M:System.Reactive.TimeInterval`1.op_Equality(System.Reactive.TimeInterval{`0},System.Reactive.TimeInterval{`0})">
4621 <summary>
4622 Indicates whether first and second arguments are equal.
4623 </summary>
4624 </member>
4625 <member name="M:System.Reactive.TimeInterval`1.op_Inequality(System.Reactive.TimeInterval{`0},System.Reactive.TimeInterval{`0})">
4626 <summary>
4627 Indicates whether first and second arguments are not equal.
4628 </summary>
4629 </member>
4630 <member name="P:System.Reactive.TimeInterval`1.Interval">
4631 <summary>
4632 Gets the interval.
4633 </summary>
4634 </member>
4635 <member name="P:System.Reactive.TimeInterval`1.Value">
4636 <summary>
4637 Gets the value.
4638 </summary>
4639 </member>
4640 <member name="T:System.Reactive.Timestamped`1">
4641 <summary>
4642 Represents a timestamped value.
4643 </summary>
4644 </member>
4645 <member name="M:System.Reactive.Timestamped`1.#ctor(`0,System.DateTimeOffset)">
4646 <summary>
4647 Constructs a timestamped value.
4648 </summary>
4649 </member>
4650 <member name="M:System.Reactive.Timestamped`1.Equals(System.Object)">
4651 <summary>
4652 Indicates whether this instance and a specified object are equal.
4653 </summary>
4654 </member>
4655 <member name="M:System.Reactive.Timestamped`1.GetHashCode">
4656 <summary>
4657 Returns the hash code for this instance.
4658 </summary>
4659 </member>
4660 <member name="M:System.Reactive.Timestamped`1.ToString">
4661 <summary>
4662 Returns a string representation of this instance.
4663 </summary>
4664 </member>
4665 <member name="M:System.Reactive.Timestamped`1.op_Equality(System.Reactive.Timestamped{`0},System.Reactive.Timestamped{`0})">
4666 <summary>
4667 Indicates whether first and second arguments are equal.
4668 </summary>
4669 </member>
4670 <member name="M:System.Reactive.Timestamped`1.op_Inequality(System.Reactive.Timestamped{`0},System.Reactive.Timestamped{`0})">
4671 <summary>
4672 Indicates whether first and second arguments are not equal.
4673 </summary>
4674 </member>
4675 <member name="P:System.Reactive.Timestamped`1.Timestamp">
4676 <summary>
4677 Gets the timestamp.
4678 </summary>
4679 </member>
4680 <member name="P:System.Reactive.Timestamped`1.Value">
4681 <summary>
4682 Gets the value.
4683 </summary>
4684 </member>
4685 <member name="T:System.Reactive.Unit">
4686 <summary>
4687 Represents void.
4688 </summary>
4689 </member>
4690 <member name="M:System.Reactive.Unit.Equals(System.Reactive.Unit)">
4691 <summary>
4692 Indicates whether the current unit is equal to the specified unit.
4693 </summary>
4694 <remarks>Always returns true.</remarks>
4695 </member>
4696 <member name="M:System.Reactive.Unit.Equals(System.Object)">
4697 <summary>
4698 Indicates whether the current unit is equal to the specified object.
4699 </summary>
4700 <param name="obj">The System.Object to compare with the current Unit.</param>
4701 <returns>true if the current unit is equal to the specified object; otherwise, false.</returns>
4702 </member>
4703 <member name="M:System.Reactive.Unit.GetHashCode">
4704 <summary>
4705 Gets the unit value's hash code.
4706 </summary>
4707 <returns>The unit value's hash code.</returns>
4708 </member>
4709 <member name="M:System.Reactive.Unit.op_Equality(System.Reactive.Unit,System.Reactive.Unit)">
4710 <summary>
4711 Indicates whether first and second arguments are equal.
4712 </summary>
4713 <param name="first">The first Unit to compare, or null.</param>
4714 <param name="second">The second Unit to compare, or null.</param>
4715 <returns>Always returns true.</returns>
4716 </member>
4717 <member name="M:System.Reactive.Unit.op_Inequality(System.Reactive.Unit,System.Reactive.Unit)">
4718 <summary>
4719 Indicates whether first and second arguments are not equal.
4720 </summary>
4721 <param name="first">The first Unit to compare, or null.</param>
4722 <param name="second">The second Unit to compare, or null.</param>
4723 <returns>Always returns false.</returns>
4724 </member>
4725 <member name="P:System.Reactive.Unit.Default">
4726 <summary>
4727 Gets the single unit value.
4728 </summary>
4729 </member>
4730 </members>
4731 </doc>