프로젝트

일반

사용자정보

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

markus / packages / Rx-Main.1.0.11226 / lib / SL4 / System.Reactive.XML @ 0ac88c70

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