forked from skyarkhangel/HSK-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaliburn.Micro.Core.xml
executable file
·2318 lines (2318 loc) · 120 KB
/
Caliburn.Micro.Core.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Caliburn.Micro.Core</name>
</assembly>
<members>
<member name="T:Caliburn.Micro.ActivateExtensions">
<summary>
Extension methods for the <see cref="T:Caliburn.Micro.IActivate"/> instance.
</summary>
</member>
<member name="M:Caliburn.Micro.ActivateExtensions.ActivateAsync(Caliburn.Micro.IActivate)">
<summary>
Activates this instance.
</summary>
<param name="activate">The instance to activate</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="T:Caliburn.Micro.ActivationEventArgs">
<summary>
EventArgs sent during activation.
</summary>
</member>
<member name="P:Caliburn.Micro.ActivationEventArgs.WasInitialized">
<summary>
Indicates whether the sender was initialized in addition to being activated.
</summary>
</member>
<member name="T:Caliburn.Micro.ActivationProcessedEventArgs">
<summary>
Contains details about the success or failure of an item's activation through an <see cref="T:Caliburn.Micro.IConductor"/>.
</summary>
</member>
<member name="P:Caliburn.Micro.ActivationProcessedEventArgs.Item">
<summary>
The item whose activation was processed.
</summary>
</member>
<member name="P:Caliburn.Micro.ActivationProcessedEventArgs.Success">
<summary>
Gets or sets a value indicating whether the activation was a success.
</summary>
<value><c>true</c> if success; otherwise, <c>false</c>.</value>
</member>
<member name="T:Caliburn.Micro.BindableCollection`1">
<summary>
A base collection class that supports automatic UI thread marshalling.
</summary>
<typeparam name="T">The type of elements contained in the collection.</typeparam>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.#ctor">
<summary>
Initializes a new instance of the <see cref = "T:Caliburn.Micro.BindableCollection`1" /> class.
</summary>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
<summary>
Initializes a new instance of the <see cref = "T:Caliburn.Micro.BindableCollection`1" /> class.
</summary>
<param name = "collection">The collection from which the elements are copied.</param>
</member>
<member name="P:Caliburn.Micro.BindableCollection`1.IsNotifying">
<summary>
Enables/Disables property change notification.
</summary>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.NotifyOfPropertyChange(System.String)">
<summary>
Notifies subscribers of the property change.
</summary>
<param name = "propertyName">Name of the property.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.Refresh">
<summary>
Raises a change notification indicating that all bindings should be refreshed.
</summary>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.InsertItem(System.Int32,`0)">
<summary>
Inserts the item to the specified position.
</summary>
<param name = "index">The index to insert at.</param>
<param name = "item">The item to be inserted.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.InsertItemBase(System.Int32,`0)">
<summary>
Exposes the base implementation of the <see cref = "M:Caliburn.Micro.BindableCollection`1.InsertItem(System.Int32,`0)" /> function.
</summary>
<param name = "index">The index.</param>
<param name = "item">The item.</param>
<remarks>
Used to avoid compiler warning regarding unverifiable code.
</remarks>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.SetItem(System.Int32,`0)">
<summary>
Sets the item at the specified position.
</summary>
<param name = "index">The index to set the item at.</param>
<param name = "item">The item to set.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.SetItemBase(System.Int32,`0)">
<summary>
Exposes the base implementation of the <see cref = "M:Caliburn.Micro.BindableCollection`1.SetItem(System.Int32,`0)" /> function.
</summary>
<param name = "index">The index.</param>
<param name = "item">The item.</param>
<remarks>
Used to avoid compiler warning regarding unverifiable code.
</remarks>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.RemoveItem(System.Int32)">
<summary>
Removes the item at the specified position.
</summary>
<param name = "index">The position used to identify the item to remove.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.RemoveItemBase(System.Int32)">
<summary>
Exposes the base implementation of the <see cref = "M:Caliburn.Micro.BindableCollection`1.RemoveItem(System.Int32)" /> function.
</summary>
<param name = "index">The index.</param>
<remarks>
Used to avoid compiler warning regarding unverifiable code.
</remarks>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.ClearItems">
<summary>
Clears the items contained by the collection.
</summary>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.ClearItemsBase">
<summary>
Exposes the base implementation of the <see cref = "M:Caliburn.Micro.BindableCollection`1.ClearItems" /> function.
</summary>
<remarks>
Used to avoid compiler warning regarding unverifiable code.
</remarks>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Raises the <see cref = "E:System.Collections.ObjectModel.ObservableCollection`1.CollectionChanged" /> event with the provided arguments.
</summary>
<param name = "e">Arguments of the event being raised.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event with the provided arguments.
</summary>
<param name = "e">The event data to report in the event.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds the range.
</summary>
<param name = "items">The items.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Removes the range.
</summary>
<param name = "items">The items.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.OnUIThread(System.Action)">
<summary>
Executes the given action on the UI thread
</summary>
<remarks>An extension point for subclasses to customise how property change notifications are handled.</remarks>
<param name="action"></param>
</member>
<member name="T:Caliburn.Micro.CloseResult`1">
<summary>
The result of a test whether an instance can be closed.
</summary>
<typeparam name="T">The type of the children of the instance.</typeparam>
</member>
<member name="M:Caliburn.Micro.CloseResult`1.#ctor(System.Boolean,System.Collections.Generic.IEnumerable{`0})">
<summary>
Creates an instance of the <see cref="T:Caliburn.Micro.CloseResult`1"/>
</summary>
<param name="closeCanOccur">Whether of not a close operation should occur.</param>
<param name="children">The children of the instance that can be closed.</param>
</member>
<member name="P:Caliburn.Micro.CloseResult`1.CloseCanOccur">
<summary>
Whether of not a close operation should occur.
</summary>
</member>
<member name="P:Caliburn.Micro.CloseResult`1.Children">
<summary>
The children of the instance that can be closed.
</summary>
</member>
<member name="T:Caliburn.Micro.Conductor`1">
<summary>
An implementation of <see cref="T:Caliburn.Micro.IConductor"/> that holds on to and activates only one item at a time.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.ActivateItemAsync(`0,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:Caliburn.Micro.Conductor`1.DeactivateItemAsync(`0,System.Boolean,System.Threading.CancellationToken)">
<summary>
Deactivates the specified item.
</summary>
<param name="item">The item to close.</param>
<param name="close">Indicates whether or not to close the item after deactivating it.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.CanCloseAsync(System.Threading.CancellationToken)">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.OnActivateAsync(System.Threading.CancellationToken)">
<summary>
Called when activating.
</summary>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.OnDeactivateAsync(System.Boolean,System.Threading.CancellationToken)">
<summary>
Called when deactivating.
</summary>
<param name="close">Indicates whether this instance will be closed.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.GetChildren">
<summary>
Gets the children.
</summary>
<returns>The collection of children.</returns>
</member>
<member name="T:Caliburn.Micro.Conductor`1.Collection">
<summary>
An implementation of <see cref="T:Caliburn.Micro.IConductor"/> that holds on many items.
</summary>
<summary>
An implementation of <see cref="T:Caliburn.Micro.IConductor"/> that holds on many items.
</summary>
</member>
<member name="T:Caliburn.Micro.Conductor`1.Collection.AllActive">
<summary>
An implementation of <see cref="T:Caliburn.Micro.IConductor"/> that holds on to many items which are all activated.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.Conductor`1.Collection.AllActive"/> class.
</summary>
<param name="openPublicItems">if set to <c>true</c> opens public items that are properties of this class.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.Conductor`1.Collection.AllActive"/> class.
</summary>
</member>
<member name="P:Caliburn.Micro.Conductor`1.Collection.AllActive.Items">
<summary>
Gets the items that are currently being conducted.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.OnActivateAsync(System.Threading.CancellationToken)">
<summary>
Called when activating.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.OnDeactivateAsync(System.Boolean,System.Threading.CancellationToken)">
<summary>
Called when deactivating.
</summary>
<param name="close">Indicates whether this instance will be closed.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.CanCloseAsync(System.Threading.CancellationToken)">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.OnInitializeAsync(System.Threading.CancellationToken)">
<summary>
Called when initializing.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.ActivateItemAsync(`0,System.Threading.CancellationToken)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.DeactivateItemAsync(`0,System.Boolean,System.Threading.CancellationToken)">
<summary>
Deactivates the specified item.
</summary>
<param name="item">The item to close.</param>
<param name="close">Indicates whether or not to close the item after deactivating it.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.GetChildren">
<summary>
Gets the children.
</summary>
<returns>The collection of children.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.EnsureItem(`0)">
<summary>
Ensures that an item is ready to be activated.
</summary>
<param name="newItem">The item that is about to be activated.</param>
<returns>The item to be activated.</returns>
</member>
<member name="T:Caliburn.Micro.Conductor`1.Collection.OneActive">
<summary>
An implementation of <see cref="T:Caliburn.Micro.IConductor"/> that holds on many items but only activates one at a time.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.Conductor`1.Collection.OneActive"/> class.
</summary>
</member>
<member name="P:Caliburn.Micro.Conductor`1.Collection.OneActive.Items">
<summary>
Gets the items that are currently being conducted.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.GetChildren">
<summary>
Gets the children.
</summary>
<returns>The collection of children.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.ActivateItemAsync(`0,System.Threading.CancellationToken)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.DeactivateItemAsync(`0,System.Boolean,System.Threading.CancellationToken)">
<summary>
Deactivates the specified item.
</summary>
<param name="item">The item to close.</param>
<param name="close">Indicates whether or not to close the item after deactivating it.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.DetermineNextItemToActivate(System.Collections.Generic.IList{`0},System.Int32)">
<summary>
Determines the next item to activate based on the last active index.
</summary>
<param name="list">The list of possible active items.</param>
<param name="lastIndex">The index of the last active item.</param>
<returns>The next item to activate.</returns>
<remarks>Called after an active item is closed.</remarks>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.CanCloseAsync(System.Threading.CancellationToken)">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.OnActivateAsync(System.Threading.CancellationToken)">
<summary>
Called when activating.
</summary>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.OnDeactivateAsync(System.Boolean,System.Threading.CancellationToken)">
<summary>
Called when deactivating.
</summary>
<param name="close">Indicates whether this instance will be closed.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.EnsureItem(`0)">
<summary>
Ensures that an item is ready to be activated.
</summary>
<param name="newItem">The item that is about to be activated.</param>
<returns>The item to be activated.</returns>
</member>
<member name="T:Caliburn.Micro.ConductorBase`1">
<summary>
A base class for various implementations of <see cref="T:Caliburn.Micro.IConductor"/>.
</summary>
<typeparam name="T">The type that is being conducted.</typeparam>
</member>
<member name="P:Caliburn.Micro.ConductorBase`1.CloseStrategy">
<summary>
Gets or sets the close strategy.
</summary>
<value>The close strategy.</value>
</member>
<member name="E:Caliburn.Micro.ConductorBase`1.ActivationProcessed">
<summary>
Occurs when an activation request is processed.
</summary>
</member>
<member name="M:Caliburn.Micro.ConductorBase`1.GetChildren">
<summary>
Gets the children.
</summary>
<returns>The collection of children.</returns>
</member>
<member name="M:Caliburn.Micro.ConductorBase`1.ActivateItemAsync(`0,System.Threading.CancellationToken)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.ConductorBase`1.DeactivateItemAsync(`0,System.Boolean,System.Threading.CancellationToken)">
<summary>
Deactivates the specified item.
</summary>
<param name="item">The item to close.</param>
<param name="close">Indicates whether or not to close the item after deactivating it.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.ConductorBase`1.OnActivationProcessed(`0,System.Boolean)">
<summary>
Called by a subclass when an activation needs processing.
</summary>
<param name="item">The item on which activation was attempted.</param>
<param name="success">if set to <c>true</c> activation was successful.</param>
</member>
<member name="M:Caliburn.Micro.ConductorBase`1.EnsureItem(`0)">
<summary>
Ensures that an item is ready to be activated.
</summary>
<param name="newItem">The item that is about to be activated.</param>
<returns>The item to be activated.</returns>
</member>
<member name="T:Caliburn.Micro.ConductorBaseWithActiveItem`1">
<summary>
A base class for various implementations of <see cref="T:Caliburn.Micro.IConductor"/> that maintain an active item.
</summary>
<typeparam name="T">The type that is being conducted.</typeparam>
</member>
<member name="P:Caliburn.Micro.ConductorBaseWithActiveItem`1.ActiveItem">
<summary>
The currently active item.
</summary>
</member>
<member name="P:Caliburn.Micro.ConductorBaseWithActiveItem`1.Caliburn#Micro#IHaveActiveItem#ActiveItem">
<summary>
The currently active item.
</summary>
<value></value>
</member>
<member name="M:Caliburn.Micro.ConductorBaseWithActiveItem`1.ChangeActiveItemAsync(`0,System.Boolean,System.Threading.CancellationToken)">
<summary>
Changes the active item.
</summary>
<param name="newItem">The new item to activate.</param>
<param name="closePrevious">Indicates whether or not to close the previous active item.</param>
<param name="cancellationToken">The cancellation token to cancel operation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.ConductorBaseWithActiveItem`1.ChangeActiveItemAsync(`0,System.Boolean)">
<summary>
Changes the active item.
</summary>
<param name="newItem">The new item to activate.</param>
<param name="closePrevious">Indicates whether or not to close the previous active item.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="T:Caliburn.Micro.ConductorExtensions">
<summary>
Extension methods for the <see cref="T:Caliburn.Micro.IConductor"/> instance.
</summary>
</member>
<member name="M:Caliburn.Micro.ConductorExtensions.ActivateItemAsync(Caliburn.Micro.IConductor,System.Object)">
<summary>
Activates the specified item.
</summary>
<param name="conductor">The conductor to activate the item with.</param>
<param name="item">The item to activate.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="T:Caliburn.Micro.ContainerExtensions">
<summary>
Extension methods for the <see cref="T:Caliburn.Micro.SimpleContainer"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.Singleton``1(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Registers a singleton.
</summary>
<typeparam name="TImplementation">The type of the implementation.</typeparam>
<param name="container">The container.</param>
<param name="key">The key.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.Singleton``2(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Registers a singleton.
</summary>
<typeparam name="TService">The type of the service.</typeparam>
<typeparam name="TImplementation">The type of the implementation.</typeparam>
<param name="container">The container.</param>
<param name="key">The key.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.PerRequest``1(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Registers an service to be created on each request.
</summary>
<typeparam name="TImplementation">The type of the implementation.</typeparam>
<param name="container">The container.</param>
<param name="key">The key.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.PerRequest``2(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Registers an service to be created on each request.
</summary>
<typeparam name="TService">The type of the service.</typeparam>
<typeparam name="TImplementation">The type of the implementation.</typeparam>
<param name="container">The container.</param>
<param name="key">The key.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.Instance``1(Caliburn.Micro.SimpleContainer,``0)">
<summary>
Registers an instance with the container.
</summary>
<typeparam name="TService">The type of the service.</typeparam>
<param name="container">The container.</param>
<param name="instance">The instance.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.Handler``1(Caliburn.Micro.SimpleContainer,System.Func{Caliburn.Micro.SimpleContainer,System.Object})">
<summary>
Registers a custom service handler with the container.
</summary>
<typeparam name="TService">The type of the service.</typeparam>
<param name="container">The container.</param>
<param name="handler">The handler.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.AllTypesOf``1(Caliburn.Micro.SimpleContainer,System.Reflection.Assembly,System.Func{System.Type,System.Boolean})">
<summary>
Registers all specified types in an assembly as singleton in the container.
</summary>
<typeparam name="TService">The type of the service.</typeparam>
<param name="container">The container.</param>
<param name="assembly">The assembly.</param>
<param name="filter">The type filter.</param>
<returns>The container.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.GetInstance``1(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Requests an instance.
</summary>
<typeparam name="TService">The type of the service.</typeparam>
<param name="container">The container.</param>
<param name="key">The key.</param>
<returns>The instance.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.GetAllInstances``1(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Gets all instances of a particular type and the given key (default null).
</summary>
<typeparam name="TService">The type to resolve.</typeparam>
<param name="container">The container.</param>
<param name = "key">The key shared by those instances</param>
<returns>The resolved instances.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.HasHandler``1(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Determines if a handler for the service/key has previously been registered.
</summary>
<typeparam name="TService">The service type.</typeparam>
<param name="container">The container.</param>
<param name="key">The key.</param>
<returns>True if a handler is registere; false otherwise.</returns>
</member>
<member name="M:Caliburn.Micro.ContainerExtensions.UnregisterHandler``1(Caliburn.Micro.SimpleContainer,System.String)">
<summary>
Unregisters any handlers for the service/key that have previously been registered.
</summary>
<typeparam name="TService">The service type.</typeparam>
<param name="container">The container.</param>
<param name = "key">The key.</param>
</member>
<member name="T:Caliburn.Micro.ContinueResultDecorator">
<summary>
A result decorator which executes a coroutine when the wrapped result was cancelled.
</summary>
</member>
<member name="M:Caliburn.Micro.ContinueResultDecorator.#ctor(Caliburn.Micro.IResult,System.Func{Caliburn.Micro.IResult})">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.ContinueResultDecorator"/> class.
</summary>
<param name="result">The result to decorate.</param>
<param name="coroutine">The coroutine to execute when <paramref name="result"/> was canceled.</param>
</member>
<member name="M:Caliburn.Micro.ContinueResultDecorator.OnInnerResultCompleted(Caliburn.Micro.CoroutineExecutionContext,Caliburn.Micro.IResult,Caliburn.Micro.ResultCompletionEventArgs)">
<summary>
Called when the execution of the decorated result has completed.
</summary>
<param name="context">The context.</param>
<param name="innerResult">The decorated result.</param>
<param name="args">The <see cref="T:Caliburn.Micro.ResultCompletionEventArgs" /> instance containing the event data.</param>
</member>
<member name="T:Caliburn.Micro.Coroutine">
<summary>
Manages coroutine execution.
</summary>
</member>
<member name="F:Caliburn.Micro.Coroutine.CreateParentEnumerator">
<summary>
Creates the parent enumerator.
</summary>
</member>
<member name="M:Caliburn.Micro.Coroutine.BeginExecute(System.Collections.Generic.IEnumerator{Caliburn.Micro.IResult},Caliburn.Micro.CoroutineExecutionContext,System.EventHandler{Caliburn.Micro.ResultCompletionEventArgs})">
<summary>
Executes a coroutine.
</summary>
<param name="coroutine">The coroutine to execute.</param>
<param name="context">The context to execute the coroutine within.</param>
/// <param name="callback">The completion callback for the coroutine.</param>
</member>
<member name="M:Caliburn.Micro.Coroutine.ExecuteAsync(System.Collections.Generic.IEnumerator{Caliburn.Micro.IResult},Caliburn.Micro.CoroutineExecutionContext)">
<summary>
Executes a coroutine asynchronous.
</summary>
<param name="coroutine">The coroutine to execute.</param>
<param name="context">The context to execute the coroutine within.</param>
<returns>A task that represents the asynchronous coroutine.</returns>
</member>
<member name="E:Caliburn.Micro.Coroutine.Completed">
<summary>
Called upon completion of a coroutine.
</summary>
</member>
<member name="T:Caliburn.Micro.CoroutineExecutionContext">
<summary>
The context used during the execution of a Coroutine.
</summary>
</member>
<member name="P:Caliburn.Micro.CoroutineExecutionContext.Source">
<summary>
The source from which the message originates.
</summary>
</member>
<member name="P:Caliburn.Micro.CoroutineExecutionContext.View">
<summary>
The view associated with the target.
</summary>
</member>
<member name="P:Caliburn.Micro.CoroutineExecutionContext.Target">
<summary>
The instance on which the action is invoked.
</summary>
</member>
<member name="T:Caliburn.Micro.DeactivateExtensions">
<summary>
Extension methods for the <see cref="T:Caliburn.Micro.IDeactivate"/> instance.
</summary>
</member>
<member name="M:Caliburn.Micro.DeactivateExtensions.DeactivateAsync(Caliburn.Micro.IDeactivate,System.Boolean)">
<summary>
Deactivates this instance.
</summary>
<param name="deactivate">The instance to deactivate</param>
<param name="close">Indicates whether or not this instance is being closed.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="T:Caliburn.Micro.DeactivationEventArgs">
<summary>
EventArgs sent during deactivation.
</summary>
</member>
<member name="P:Caliburn.Micro.DeactivationEventArgs.WasClosed">
<summary>
Indicates whether the sender was closed in addition to being deactivated.
</summary>
</member>
<member name="T:Caliburn.Micro.DebugLog">
<summary>
A simple logger thats logs everything to the debugger.
</summary>
</member>
<member name="M:Caliburn.Micro.DebugLog.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.DebugLog"/> class.
</summary>
<param name="type">The type.</param>
</member>
<member name="M:Caliburn.Micro.DebugLog.Info(System.String,System.Object[])">
<summary>
Logs the message as info.
</summary>
<param name="format">A formatted message.</param>
<param name="args">Parameters to be injected into the formatted message.</param>
</member>
<member name="M:Caliburn.Micro.DebugLog.Warn(System.String,System.Object[])">
<summary>
Logs the message as a warning.
</summary>
<param name="format">A formatted message.</param>
<param name="args">Parameters to be injected into the formatted message.</param>
</member>
<member name="M:Caliburn.Micro.DebugLog.Error(System.Exception)">
<summary>
Logs the exception.
</summary>
<param name="exception">The exception.</param>
</member>
<member name="T:Caliburn.Micro.DefaultCloseStrategy`1">
<summary>
Used to gather the results from multiple child elements which may or may not prevent closing.
</summary>
<typeparam name="T">The type of child element.</typeparam>
</member>
<member name="M:Caliburn.Micro.DefaultCloseStrategy`1.#ctor(System.Boolean)">
<summary>
Creates an instance of the class.
</summary>
<param name="closeConductedItemsWhenConductorCannotClose">Indicates that even if all conducted items are not closable, those that are should be closed. The default is FALSE.</param>
</member>
<member name="M:Caliburn.Micro.DefaultCloseStrategy`1.ExecuteAsync(System.Collections.Generic.IEnumerable{`0},System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="T:Caliburn.Micro.DefaultPlatformProvider">
<summary>
Default implementation for <see cref="T:Caliburn.Micro.IPlatformProvider"/> that does no platform enlightenment.
</summary>
</member>
<member name="P:Caliburn.Micro.DefaultPlatformProvider.InDesignMode">
<summary>
Indicates whether or not the framework is in design-time mode.
</summary>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.BeginOnUIThread(System.Action)">
<summary>
Executes the action on the UI thread asynchronously.
</summary>
<param name="action">The action to execute.</param>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.OnUIThreadAsync(System.Func{System.Threading.Tasks.Task})">
<summary>
Executes the action on the UI thread asynchronously.
</summary>
<param name="action">The action to execute.</param>
<returns></returns>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.OnUIThread(System.Action)">
<summary>
Executes the action on the UI thread.
</summary>
<param name="action">The action to execute.</param>
</member>
<member name="P:Caliburn.Micro.DefaultPlatformProvider.PropertyChangeNotificationsOnUIThread">
<summary>
Whether or not classes should execute property change notications on the UI thread.
</summary>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.GetFirstNonGeneratedView(System.Object)">
<summary>
Used to retrieve the root, non-framework-created view.
</summary>
<param name="view">The view to search.</param>
<returns>
The root element that was not created by the framework.
</returns>
<remarks>
In certain instances the services create UI elements.
For example, if you ask the window manager to show a UserControl as a dialog, it creates a window to host the UserControl in.
The WindowManager marks that element as a framework-created element so that it can determine what it created vs. what was intended by the developer.
Calling GetFirstNonGeneratedView allows the framework to discover what the original element was.
</remarks>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.ExecuteOnFirstLoad(System.Object,System.Action{System.Object})">
<summary>
Executes the handler the fist time the view is loaded.
</summary>
<param name="view">The view.</param>
<param name="handler">The handler.</param>
<returns>true if the handler was executed immediately; false otherwise</returns>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.ExecuteOnLayoutUpdated(System.Object,System.Action{System.Object})">
<summary>
Executes the handler the next time the view's LayoutUpdated event fires.
</summary>
<param name="view">The view.</param>
<param name="handler">The handler.</param>
</member>
<member name="M:Caliburn.Micro.DefaultPlatformProvider.GetViewCloseAction(System.Object,System.Collections.Generic.ICollection{System.Object},System.Nullable{System.Boolean})">
<summary>
Get the close action for the specified view model.
</summary>
<param name="viewModel">The view model to close.</param>
<param name="views">The associated views.</param>
<param name="dialogResult">The dialog result.</param>
<returns>
An <see cref="T:System.Action" /> to close the view model.
</returns>
</member>
<member name="T:Caliburn.Micro.DelegateResult">
<summary>
A result that executes an <see cref="T:System.Action"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.DelegateResult.#ctor(System.Action)">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.DelegateResult"/> class.
</summary>
<param name="action">The action.</param>
</member>
<member name="M:Caliburn.Micro.DelegateResult.Execute(Caliburn.Micro.CoroutineExecutionContext)">
<summary>
Executes the result using the specified context.
</summary>
<param name="context">The context.</param>
</member>
<member name="E:Caliburn.Micro.DelegateResult.Completed">
<summary>
Occurs when execution has completed.
</summary>
</member>
<member name="T:Caliburn.Micro.DelegateResult`1">
<summary>
A result that executes a <see cref="T:System.Func`1"/>
</summary>
<typeparam name="TResult">The type of the result.</typeparam>
</member>
<member name="M:Caliburn.Micro.DelegateResult`1.#ctor(System.Func{`0})">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.DelegateResult`1"/> class.
</summary>
<param name="action">The action.</param>
</member>
<member name="M:Caliburn.Micro.DelegateResult`1.Execute(Caliburn.Micro.CoroutineExecutionContext)">
<summary>
Executes the result using the specified context.
</summary>
<param name="context">The context.</param>
</member>
<member name="P:Caliburn.Micro.DelegateResult`1.Result">
<summary>
Gets the result.
</summary>
</member>
<member name="E:Caliburn.Micro.DelegateResult`1.Completed">
<summary>
Occurs when execution has completed.
</summary>
</member>
<member name="T:Caliburn.Micro.EnumerableExtensions">
<summary>
Extension methods for <see cref="T:System.Collections.Generic.IEnumerable`1"/>
</summary>
</member>
<member name="M:Caliburn.Micro.EnumerableExtensions.Apply``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>
Applies the action to each element in the list.
</summary>
<typeparam name="T">The enumerable item's type.</typeparam>
<param name="enumerable">The elements to enumerate.</param>
<param name="action">The action to apply to each item in the list.</param>
</member>
<member name="T:Caliburn.Micro.EventAggregator">
<inheritdoc />
</member>
<member name="M:Caliburn.Micro.EventAggregator.HandlerExistsFor(System.Type)">
<inheritdoc />
</member>
<member name="M:Caliburn.Micro.EventAggregator.Subscribe(System.Object,System.Func{System.Func{System.Threading.Tasks.Task},System.Threading.Tasks.Task})">
<inheritdoc />
</member>
<member name="M:Caliburn.Micro.EventAggregator.Unsubscribe(System.Object)">
<inheritdoc />
</member>
<member name="M:Caliburn.Micro.EventAggregator.PublishAsync(System.Object,System.Func{System.Func{System.Threading.Tasks.Task},System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="T:Caliburn.Micro.EventAggregatorExtensions">
<summary>
Extensions for <see cref="T:Caliburn.Micro.IEventAggregator"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.SubscribeOnPublishedThread(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Subscribes an instance to all events declared through implementations of <see cref = "T:Caliburn.Micro.IHandle`1" />.
</summary>
<remarks>The subscription is invoked on the thread chosen by the publisher.</remarks>
<param name="eventAggregator"></param>
<param name = "subscriber">The instance to subscribe for event publication.</param>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.Subscribe(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Subscribes an instance to all events declared through implementations of <see cref = "T:Caliburn.Micro.IHandle`1" />.
</summary>
<remarks>The subscription is invoked on the thread chosen by the publisher.</remarks>
<param name="eventAggregator"></param>
<param name = "subscriber">The instance to subscribe for event publication.</param>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.SubscribeOnBackgroundThread(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Subscribes an instance to all events declared through implementations of <see cref = "T:Caliburn.Micro.IHandle`1" />.
</summary>
<remarks>The subscription is invoked on a new background thread.</remarks>
<param name="eventAggregator"></param>
<param name = "subscriber">The instance to subscribe for event publication.</param>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.SubscribeOnUIThread(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Subscribes an instance to all events declared through implementations of <see cref = "T:Caliburn.Micro.IHandle`1" />.
</summary>
<remarks>The subscription is invoked on the UI thread.</remarks>
<param name="eventAggregator"></param>
<param name = "subscriber">The instance to subscribe for event publication.</param>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.PublishOnCurrentThreadAsync(Caliburn.Micro.IEventAggregator,System.Object,System.Threading.CancellationToken)">
<summary>
Publishes a message on the current thread (synchrone).
</summary>
<param name="eventAggregator">The event aggregator.</param>
<param name = "message">The message instance.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.PublishOnCurrentThreadAsync(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Publishes a message on the current thread (synchrone).
</summary>
<param name="eventAggregator">The event aggregator.</param>
<param name = "message">The message instance.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.PublishOnBackgroundThreadAsync(Caliburn.Micro.IEventAggregator,System.Object,System.Threading.CancellationToken)">
<summary>
Publishes a message on a background thread (async).
</summary>
<param name="eventAggregator">The event aggregator.</param>
<param name = "message">The message instance.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.PublishOnBackgroundThreadAsync(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Publishes a message on a background thread (async).
</summary>
<param name="eventAggregator">The event aggregator.</param>
<param name = "message">The message instance.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.PublishOnUIThreadAsync(Caliburn.Micro.IEventAggregator,System.Object,System.Threading.CancellationToken)">
<summary>
Publishes a message on the UI thread.
</summary>
<param name="eventAggregator">The event aggregator.</param>
<param name = "message">The message instance.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:Caliburn.Micro.EventAggregatorExtensions.PublishOnUIThreadAsync(Caliburn.Micro.IEventAggregator,System.Object)">
<summary>
Publishes a message on the UI thread.
</summary>
<param name="eventAggregator">The event aggregator.</param>
<param name = "message">The message instance.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="T:Caliburn.Micro.Execute">
<summary>
Enables easy marshalling of code to the UI thread.
</summary>
</member>
<member name="P:Caliburn.Micro.Execute.InDesignMode">
<summary>
Indicates whether or not the framework is in design-time mode.
</summary>
</member>
<member name="M:Caliburn.Micro.Execute.BeginOnUIThread(System.Action)">
<summary>
Executes the action on the UI thread asynchronously.
</summary>
<param name="action">The action to execute.</param>