프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / packages / Rx-Main.1.0.11226 / lib / Net35 / System.Reactive.XML @ f09d5acb

이력 | 보기 | 이력해설 | 다운로드 (318 KB)

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