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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>Caliburn.Micro</name>
</assembly>
<members>
<member name="T:Caliburn.Micro.View">
<summary>
Hosts attached properties related to view models.
</summary>
</member>
<member name="F:Caliburn.Micro.View.DefaultContext">
<summary>
The default view context.
</summary>
</member>
<member name="F:Caliburn.Micro.View.IsLoadedProperty">
<summary>
A dependency property which allows the framework to track whether a certain element has already been loaded in certain scenarios.
</summary>
</member>
<member name="F:Caliburn.Micro.View.IsScopeRootProperty">
<summary>
A dependency property which marks an element as a name scope root.
</summary>
</member>
<member name="F:Caliburn.Micro.View.ApplyConventionsProperty">
<summary>
A dependency property which allows the override of convention application behavior.
</summary>
</member>
<member name="F:Caliburn.Micro.View.ContextProperty">
<summary>
A dependency property for assigning a context to a particular portion of the UI.
</summary>
</member>
<member name="F:Caliburn.Micro.View.ModelProperty">
<summary>
A dependency property for attaching a model to the UI.
</summary>
</member>
<member name="F:Caliburn.Micro.View.IsGeneratedProperty">
<summary>
Used by the framework to indicate that this element was generated.
</summary>
</member>
<member name="M:Caliburn.Micro.View.ExecuteOnLoad(System.Windows.FrameworkElement,System.Windows.RoutedEventHandler)">
<summary>
Executes the handler immediately if the element is loaded, otherwise wires it to the Loaded event.
</summary>
<param name="element">The element.</param>
<param name="handler">The handler.</param>
<returns>true if the handler was executed immediately; false otherwise</returns>
</member>
<member name="F:Caliburn.Micro.View.GetFirstNonGeneratedView">
<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.View.GetApplyConventions(System.Windows.DependencyObject)">
<summary>
Gets the convention application behavior.
</summary>
<param name="d">The element the property is attached to.</param>
<returns>Whether or not to apply conventions.</returns>
</member>
<member name="M:Caliburn.Micro.View.SetApplyConventions(System.Windows.DependencyObject,System.Nullable{System.Boolean})">
<summary>
Sets the convention application behavior.
</summary>
<param name="d">The element to attach the property to.</param>
<param name="value">Whether or not to apply conventions.</param>
</member>
<member name="M:Caliburn.Micro.View.SetModel(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the model.
</summary>
<param name="d">The element to attach the model to.</param>
<param name="value">The model.</param>
</member>
<member name="M:Caliburn.Micro.View.GetModel(System.Windows.DependencyObject)">
<summary>
Gets the model.
</summary>
<param name="d">The element the model is attached to.</param>
<returns>The model.</returns>
</member>
<member name="M:Caliburn.Micro.View.GetContext(System.Windows.DependencyObject)">
<summary>
Gets the context.
</summary>
<param name="d">The element the context is attached to.</param>
<returns>The context.</returns>
</member>
<member name="M:Caliburn.Micro.View.SetContext(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the context.
</summary>
<param name="d">The element to attach the context to.</param>
<param name="value">The context.</param>
</member>
<member name="T:Caliburn.Micro.Parser">
<summary>
Parses text into a fully functional set of <see cref="T:System.Windows.Interactivity.TriggerBase"/> instances with <see cref="T:Caliburn.Micro.ActionMessage"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.Parser.Parse(System.Windows.DependencyObject,System.String)">
<summary>
Parses the specified message text.
</summary>
<param name="target">The target.</param>
<param name="text">The message text.</param>
<returns>The triggers parsed from the text.</returns>
</member>
<member name="F:Caliburn.Micro.Parser.CreateTrigger">
<summary>
The function used to generate a trigger.
</summary>
<remarks>The parameters passed to the method are the the target of the trigger and string representing the trigger.</remarks>
</member>
<member name="M:Caliburn.Micro.Parser.CreateMessage(System.Windows.DependencyObject,System.String)">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.ActionMessage"/> by parsing out the textual dsl.
</summary>
<param name="target">The target of the message.</param>
<param name="messageText">The textual message dsl.</param>
<returns>The created message.</returns>
</member>
<member name="F:Caliburn.Micro.Parser.InterpretMessageText">
<summary>
Function used to parse a string identified as a message.
</summary>
</member>
<member name="F:Caliburn.Micro.Parser.CreateParameter">
<summary>
Function used to parse a string identified as a message parameter.
</summary>
</member>
<member name="M:Caliburn.Micro.Parser.BindParameter(System.Windows.FrameworkElement,Caliburn.Micro.Parameter,System.String,System.String,System.Windows.Data.BindingMode)">
<summary>
Creates a binding on a <see cref="T:Caliburn.Micro.Parameter"/>.
</summary>
<param name="target">The target to which the message is applied.</param>
<param name="parameter">The parameter object.</param>
<param name="elementName">The name of the element to bind to.</param>
<param name="path">The path of the element to bind to.</param>
<param name="bindingMode">The binding mode to use.</param>
</member>
<member name="T:Caliburn.Micro.Execute">
<summary>
Enables easy marshalling of code to the UI thread.
</summary>
</member>
<member name="M:Caliburn.Micro.Execute.InitializeWithDispatcher">
<summary>
Initializes the framework using the current dispatcher.
</summary>
</member>
<member name="M:Caliburn.Micro.Execute.ResetWithoutDispatcher">
<summary>
Resets the executor to use a non-dispatcher-based action executor.
</summary>
</member>
<member name="M:Caliburn.Micro.Execute.SetUIThreadMarshaller(System.Action{System.Action})">
<summary>
Sets a custom UI thread marshaller.
</summary>
<param name="marshaller">The marshaller.</param>
</member>
<member name="M:Caliburn.Micro.Execute.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.Execute.InDesignMode">
<summary>
Indicates whether or not the framework is in design-time mode.
</summary>
</member>
<member name="T:Caliburn.Micro.INotifyPropertyChangedEx">
<summary>
Extends <see cref="T:System.ComponentModel.INotifyPropertyChanged"/> such that the change event can be raised by external parties.
</summary>
</member>
<member name="M:Caliburn.Micro.INotifyPropertyChangedEx.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.INotifyPropertyChangedEx.Refresh">
<summary>
Raises a change notification indicating that all bindings should be refreshed.
</summary>
</member>
<member name="P:Caliburn.Micro.INotifyPropertyChangedEx.IsNotifying">
<summary>
Enables/Disables property change notification.
</summary>
</member>
<member name="M:Caliburn.Micro.PropertyChangedBase.#ctor">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.PropertyChangedBase"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.PropertyChangedBase.Refresh">
<summary>
Raises a change notification indicating that all bindings should be refreshed.
</summary>
</member>
<member name="M:Caliburn.Micro.PropertyChangedBase.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.PropertyChangedBase.NotifyOfPropertyChange``1(System.Linq.Expressions.Expression{System.Func{``0}})">
<summary>
Notifies subscribers of the property change.
</summary>
<typeparam name = "TProperty">The type of the property.</typeparam>
<param name = "property">The property expression.</param>
</member>
<member name="M:Caliburn.Micro.PropertyChangedBase.RaisePropertyChangedEventImmediately(System.String)">
<summary>
Raises the property changed event immediately.
</summary>
<param name = "propertyName">Name of the property.</param>
</member>
<member name="M:Caliburn.Micro.PropertyChangedBase.OnDeserialized(System.Runtime.Serialization.StreamingContext)">
<summary>
Called when the object is deserialized.
</summary>
<param name="c">The streaming context.</param>
</member>
<member name="M:Caliburn.Micro.PropertyChangedBase.ShouldSerializeIsNotifying">
<summary>
Used to indicate whether or not the IsNotifying property is serialized to Xml.
</summary>
<returns>Whether or not to serialize the IsNotifying property. The default is false.</returns>
</member>
<member name="P:Caliburn.Micro.PropertyChangedBase.IsNotifying">
<summary>
Enables/Disables property change notification.
</summary>
</member>
<member name="T:Caliburn.Micro.IObservableCollection`1">
<summary>
Represents a collection that is observable.
</summary>
<typeparam name = "T">The type of elements contained in the collection.</typeparam>
</member>
<member name="M:Caliburn.Micro.IObservableCollection`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds the range.
</summary>
<param name = "items">The items.</param>
</member>
<member name="M:Caliburn.Micro.IObservableCollection`1.RemoveRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Removes the range.
</summary>
<param name = "items">The items.</param>
</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>
<exception cref="T:System.ArgumentNullException">
The <paramref name="collection"/> parameter cannot be null.
</exception>
</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.MoveItem(System.Int32,System.Int32)">
<summary>
Moves the item within the collection.
</summary>
<param name="oldIndex">The old position of the item.</param>
<param name="newIndex">The new position of the item.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.MoveItemBase(System.Int32,System.Int32)">
<summary>
Exposes the base implementation fo the <see cref="M:Caliburn.Micro.BindableCollection`1.MoveItem(System.Int32,System.Int32)"/> function.
</summary>
<param name="oldIndex">The old index.</param>
<param name="newIndex">The new index.</param>
<remarks>Used to avoid compiler warning regarding unverificable 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.OnDeserialized(System.Runtime.Serialization.StreamingContext)">
<summary>
Called when the object is deserialized.
</summary>
<param name="c">The streaming context.</param>
</member>
<member name="M:Caliburn.Micro.BindableCollection`1.ShouldSerializeIsNotifying">
<summary>
Used to indicate whether or not the IsNotifying property is serialized to Xml.
</summary>
<returns>Whether or not to serialize the IsNotifying property. The default is false.</returns>
</member>
<member name="P:Caliburn.Micro.BindableCollection`1.IsNotifying">
<summary>
Enables/Disables property change notification.
</summary>
</member>
<member name="T:Caliburn.Micro.RegExHelper">
<summary>
Helper class for encoding strings to regular expression patterns
</summary>
</member>
<member name="F:Caliburn.Micro.RegExHelper.NameRegEx">
<summary>
Regular expression pattern for valid name
</summary>
</member>
<member name="F:Caliburn.Micro.RegExHelper.SubNamespaceRegEx">
<summary>
Regular expression pattern for subnamespace (including dot)
</summary>
</member>
<member name="F:Caliburn.Micro.RegExHelper.NamespaceRegEx">
<summary>
Regular expression pattern for namespace or namespace fragment
</summary>
</member>
<member name="M:Caliburn.Micro.RegExHelper.GetCaptureGroup(System.String,System.String)">
<summary>
Creates a named capture group with the specified regular expression
</summary>
<param name="groupName">Name of capture group to create</param>
<param name="regEx">Regular expression pattern to capture</param>
<returns>Regular expression capture group with the specified group name</returns>
</member>
<member name="M:Caliburn.Micro.RegExHelper.NamespaceToRegEx(System.String)">
<summary>
Converts a namespace (including wildcards) to a regular expression string
</summary>
<param name="srcNamespace">Source namespace to convert to regular expression</param>
<returns>Namespace converted to a regular expression</returns>
</member>
<member name="M:Caliburn.Micro.RegExHelper.GetNameCaptureGroup(System.String)">
<summary>
Creates a capture group for a valid name regular expression pattern
</summary>
<param name="groupName">Name of capture group to create</param>
<returns>Regular expression capture group with the specified group name</returns>
</member>
<member name="M:Caliburn.Micro.RegExHelper.GetNamespaceCaptureGroup(System.String)">
<summary>
Creates a capture group for a namespace regular expression pattern
</summary>
<param name="groupName">Name of capture group to create</param>
<returns>Regular expression capture group with the specified group name</returns>
</member>
<member name="T:Caliburn.Micro.ILog">
<summary>
A logger.
</summary>
</member>
<member name="M:Caliburn.Micro.ILog.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.ILog.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.ILog.Error(System.Exception)">
<summary>
Logs the exception.
</summary>
<param name="exception">The exception.</param>
</member>
<member name="T:Caliburn.Micro.LogManager">
<summary>
Used to manage logging.
</summary>
</member>
<member name="F:Caliburn.Micro.LogManager.GetLog">
<summary>
Creates an <see cref="T:Caliburn.Micro.ILog"/> for the provided type.
</summary>
</member>
<member name="T:Caliburn.Micro.Parameter">
<summary>
Represents a parameter of an <see cref="T:Caliburn.Micro.ActionMessage"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.Parameter.ValueProperty">
<summary>
A dependency property representing the parameter's value.
</summary>
</member>
<member name="M:Caliburn.Micro.Parameter.CreateInstanceCore">
<summary>
When implemented in a derived class, creates a new instance of the <see cref="T:System.Windows.Freezable"/> derived class.
</summary>
<returns>The new instance.</returns>
</member>
<member name="M:Caliburn.Micro.Parameter.MakeAwareOf(Caliburn.Micro.ActionMessage)">
<summary>
Makes the parameter aware of the <see cref="T:Caliburn.Micro.ActionMessage"/> that it's attached to.
</summary>
<param name="owner">The action message.</param>
</member>
<member name="P:Caliburn.Micro.Parameter.Value">
<summary>
Gets or sets the value of the parameter.
</summary>
<value>The value.</value>
</member>
<member name="T:Caliburn.Micro.Screen">
<summary>
A base implementation of <see cref="T:Caliburn.Micro.IScreen"/>.
</summary>
</member>
<member name="T:Caliburn.Micro.ViewAware">
<summary>
A base implementation of <see cref="T:Caliburn.Micro.IViewAware"/> which is capable of caching views by context.
</summary>
</member>
<member name="T:Caliburn.Micro.IViewAware">
<summary>
Denotes a class which is aware of its view(s).
</summary>
</member>
<member name="M:Caliburn.Micro.IViewAware.AttachView(System.Object,System.Object)">
<summary>
Attaches a view to this instance.
</summary>
<param name="view">The view.</param>
<param name="context">The context in which the view appears.</param>
</member>
<member name="M:Caliburn.Micro.IViewAware.GetView(System.Object)">
<summary>
Gets a view previously attached to this instance.
</summary>
<param name="context">The context denoting which view to retrieve.</param>
<returns>The view.</returns>
</member>
<member name="E:Caliburn.Micro.IViewAware.ViewAttached">
<summary>
Raised when a view is attached.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewAware.CacheViewsByDefault">
<summary>
Indicates whether or not implementors of <see cref="T:Caliburn.Micro.IViewAware"/> should cache their views by default.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewAware.Views">
<summary>
The view chache for this instance.
</summary>
</member>
<member name="M:Caliburn.Micro.ViewAware.#ctor">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.ViewAware"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.ViewAware.#ctor(System.Boolean)">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.ViewAware"/>.
</summary>
<param name="cacheViews">Indicates whether or not this instance maintains a view cache.</param>
</member>
<member name="M:Caliburn.Micro.ViewAware.OnViewAttached(System.Object,System.Object)">
<summary>
Called when a view is attached.
</summary>
<param name="view">The view.</param>
<param name="context">The context in which the view appears.</param>
</member>
<member name="M:Caliburn.Micro.ViewAware.OnViewLoaded(System.Object)">
<summary>
Called when an attached view's Loaded event fires.
</summary>
<param name = "view"></param>
</member>
<member name="M:Caliburn.Micro.ViewAware.GetView(System.Object)">
<summary>
Gets a view previously attached to this instance.
</summary>
<param name = "context">The context denoting which view to retrieve.</param>
<returns>The view.</returns>
</member>
<member name="E:Caliburn.Micro.ViewAware.ViewAttached">
<summary>
Raised when a view is attached.
</summary>
</member>
<member name="P:Caliburn.Micro.ViewAware.CacheViews">
<summary>
Indicates whether or not this instance maintains a view cache.
</summary>
</member>
<member name="T:Caliburn.Micro.IScreen">
<summary>
Denotes an instance which implements <see cref="T:Caliburn.Micro.IHaveDisplayName"/>, <see cref="T:Caliburn.Micro.IActivate"/>, <see cref="T:Caliburn.Micro.IDeactivate"/>, <see cref="T:Caliburn.Micro.IGuardClose"/> and <see cref="T:Caliburn.Micro.INotifyPropertyChangedEx"/>
</summary>
</member>
<member name="T:Caliburn.Micro.IHaveDisplayName">
<summary>
Denotes an instance which has a display name.
</summary>
</member>
<member name="P:Caliburn.Micro.IHaveDisplayName.DisplayName">
<summary>
Gets or Sets the Display Name
</summary>
</member>
<member name="T:Caliburn.Micro.IActivate">
<summary>
Denotes an instance which requires activation.
</summary>
</member>
<member name="M:Caliburn.Micro.IActivate.Activate">
<summary>
Activates this instance.
</summary>
</member>
<member name="P:Caliburn.Micro.IActivate.IsActive">
<summary>
Indicates whether or not this instance is active.
</summary>
</member>
<member name="E:Caliburn.Micro.IActivate.Activated">
<summary>
Raised after activation occurs.
</summary>
</member>
<member name="T:Caliburn.Micro.IDeactivate">
<summary>
Denotes an instance which requires deactivation.
</summary>
</member>
<member name="M:Caliburn.Micro.IDeactivate.Deactivate(System.Boolean)">
<summary>
Deactivates this instance.
</summary>
<param name="close">Indicates whether or not this instance is being closed.</param>
</member>
<member name="E:Caliburn.Micro.IDeactivate.AttemptingDeactivation">
<summary>
Raised before deactivation.
</summary>
</member>
<member name="E:Caliburn.Micro.IDeactivate.Deactivated">
<summary>
Raised after deactivation.
</summary>
</member>
<member name="T:Caliburn.Micro.IGuardClose">
<summary>
Denotes an instance which may prevent closing.
</summary>
</member>
<member name="T:Caliburn.Micro.IClose">
<summary>
Denotes an object that can be closed.
</summary>
</member>
<member name="M:Caliburn.Micro.IClose.TryClose">
<summary>
Tries to close this instance.
</summary>
</member>
<member name="M:Caliburn.Micro.IGuardClose.CanClose(System.Action{System.Boolean})">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="callback">The implementer calls this action with the result of the close check.</param>
</member>
<member name="T:Caliburn.Micro.IChild">
<summary>
Denotes a node within a parent/child hierarchy.
</summary>
</member>
<member name="P:Caliburn.Micro.IChild.Parent">
<summary>
Gets or Sets the Parent
</summary>
</member>
<member name="M:Caliburn.Micro.Screen.#ctor">
<summary>
Creates an instance of the screen.
</summary>
</member>
<member name="M:Caliburn.Micro.Screen.OnInitialize">
<summary>
Called when initializing.
</summary>
</member>
<member name="M:Caliburn.Micro.Screen.OnActivate">
<summary>
Called when activating.
</summary>
</member>
<member name="M:Caliburn.Micro.Screen.OnDeactivate(System.Boolean)">
<summary>
Called when deactivating.
</summary>
<param name = "close">Inidicates whether this instance will be closed.</param>
</member>
<member name="M:Caliburn.Micro.Screen.CanClose(System.Action{System.Boolean})">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name = "callback">The implementor calls this action with the result of the close check.</param>
</member>
<member name="M:Caliburn.Micro.Screen.TryClose">
<summary>
Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close.
</summary>
</member>
<member name="M:Caliburn.Micro.Screen.TryClose(System.Nullable{System.Boolean})">
<summary>
Closes this instance by asking its Parent to initiate shutdown or by asking it's corresponding view to close.
This overload also provides an opportunity to pass a dialog result to it's corresponding view.
</summary>
<param name="dialogResult">The dialog result.</param>
</member>
<member name="P:Caliburn.Micro.Screen.Parent">
<summary>
Gets or Sets the Parent <see cref="T:Caliburn.Micro.IConductor"/>
</summary>
</member>
<member name="P:Caliburn.Micro.Screen.DisplayName">
<summary>
Gets or Sets the Display Name
</summary>
</member>
<member name="P:Caliburn.Micro.Screen.IsActive">
<summary>
Indicates whether or not this instance is currently active.
</summary>
</member>
<member name="P:Caliburn.Micro.Screen.IsInitialized">
<summary>
Indicates whether or not this instance is currently initialized.
</summary>
</member>
<member name="E:Caliburn.Micro.Screen.Activated">
<summary>
Raised after activation occurs.
</summary>
</member>
<member name="E:Caliburn.Micro.Screen.AttemptingDeactivation">
<summary>
Raised before deactivation.
</summary>
</member>
<member name="E:Caliburn.Micro.Screen.Deactivated">
<summary>
Raised after deactivation.
</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="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="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="T:Caliburn.Micro.IConductor">
<summary>
Denotes an instance which conducts other objects by managing an ActiveItem and maintaining a strict lifecycle.
</summary>
<remarks>Conducted instances can optin to the lifecycle by impelenting any of the follosing <see cref="T:Caliburn.Micro.IActivate"/>, <see cref="T:Caliburn.Micro.IDeactivate"/>, <see cref="T:Caliburn.Micro.IGuardClose"/>.</remarks>
</member>
<member name="T:Caliburn.Micro.IParent">
<summary>
Interface used to define an object associated to a collection of children.
</summary>
</member>
<member name="M:Caliburn.Micro.IParent.GetChildren">
<summary>
Gets the children.
</summary>
<returns>
The collection of children.
</returns>
</member>
<member name="M:Caliburn.Micro.IConductor.ActivateItem(System.Object)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
</member>
<member name="M:Caliburn.Micro.IConductor.DeactivateItem(System.Object,System.Boolean)">
<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>
</member>
<member name="E:Caliburn.Micro.IConductor.ActivationProcessed">
<summary>
Occurs when an activation request is processed.
</summary>
</member>
<member name="T:Caliburn.Micro.IParent`1">
<summary>
Interface used to define a specialized parent.
</summary>
<typeparam name="T">The type of children.</typeparam>
</member>
<member name="M:Caliburn.Micro.IParent`1.GetChildren">
<summary>
Gets the children.
</summary>
<returns>
The collection of children.
</returns>
</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.ActivateItem(`0)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
</member>
<member name="M:Caliburn.Micro.ConductorBase`1.DeactivateItem(`0,System.Boolean)">
<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>
</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"></param>
<returns>The item to be activated.</returns>
</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="T:Caliburn.Micro.IConductActiveItem">
<summary>
An <see cref="T:Caliburn.Micro.IConductor"/> that also implements <see cref="T:Caliburn.Micro.IHaveActiveItem"/>.
</summary>
</member>
<member name="T:Caliburn.Micro.IHaveActiveItem">
<summary>
Denotes an instance which maintains an active item.
</summary>
</member>
<member name="P:Caliburn.Micro.IHaveActiveItem.ActiveItem">
<summary>
The currently active item.
</summary>
</member>
<member name="M:Caliburn.Micro.ConductorBaseWithActiveItem`1.ChangeActiveItem(`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>
</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.Conductor`1.ActivateItem(`0)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.DeactivateItem(`0,System.Boolean)">
<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>
</member>
<member name="M:Caliburn.Micro.Conductor`1.CanClose(System.Action{System.Boolean})">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="callback">The implementor calls this action with the result of the close check.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.OnActivate">
<summary>
Called when activating.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.OnDeactivate(System.Boolean)">
<summary>
Called when deactivating.
</summary>
<param name="close">Inidicates whether this instance will be closed.</param>
</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 wich 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="M:Caliburn.Micro.Conductor`1.Collection.AllActive.OnActivate">
<summary>
Called when activating.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.OnDeactivate(System.Boolean)">
<summary>
Called when deactivating.
</summary>
<param name="close">Inidicates whether this instance will be closed.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.CanClose(System.Action{System.Boolean})">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="callback">The implementor calls this action with the result of the close check.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.OnInitialize">
<summary>
Called when initializing.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.ActivateItem(`0)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.AllActive.DeactivateItem(`0,System.Boolean)">
<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>
</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"></param>
<returns>The item to be activated.</returns>
</member>
<member name="P:Caliburn.Micro.Conductor`1.Collection.AllActive.Items">
<summary>
Gets the items that are currently being conducted.
</summary>
</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 on 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="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.ActivateItem(`0)">
<summary>
Activates the specified item.
</summary>
<param name="item">The item to activate.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.DeactivateItem(`0,System.Boolean)">
<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>
</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.CanClose(System.Action{System.Boolean})">
<summary>
Called to check whether or not this instance can close.
</summary>
<param name="callback">The implementor calls this action with the result of the close check.</param>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.OnActivate">
<summary>
Called when activating.
</summary>
</member>
<member name="M:Caliburn.Micro.Conductor`1.Collection.OneActive.OnDeactivate(System.Boolean)">
<summary>
Called when deactivating.
</summary>
<param name="close">Inidicates whether this instance will be closed.</param>
</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"></param>
<returns>The item to be activated.</returns>
</member>
<member name="P:Caliburn.Micro.Conductor`1.Collection.OneActive.Items">
<summary>
Gets the items that are currently being conducted.
</summary>
</member>
<member name="T:Caliburn.Micro.ViewModelLocator">
<summary>
A strategy for determining which view model to use for a given view.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewModelLocator.NameTransformer">
<summary>
Used to transform names.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewModelLocator.InterfaceCaptureGroupName">
<summary>
The name of the capture group used as a marker for rules that return interface types
</summary>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.ConfigureTypeMappings(Caliburn.Micro.TypeMappingConfiguration)">
<summary>
Specifies how type mappings are created, including default type mappings. Calling this method will
clear all existing name transformation rules and create new default type mappings according to the
configuration.
</summary>
<param name="config">An instance of TypeMappingConfiguration that provides the settings for configuration</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddDefaultTypeMapping(System.String)">
<summary>
Adds a default type mapping using the standard namespace mapping convention
</summary>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddTypeMapping(System.String,System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping based on namespace RegEx replace and filter patterns
</summary>
<param name="nsSourceReplaceRegEx">RegEx replace pattern for source namespace</param>
<param name="nsSourceFilterRegEx">RegEx filter pattern for source namespace</param>
<param name="nsTargetsRegEx">Array of RegEx replace values for target namespaces</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddTypeMapping(System.String,System.String,System.String,System.String)">
<summary>
Adds a standard type mapping based on namespace RegEx replace and filter patterns
</summary>
<param name="nsSourceReplaceRegEx">RegEx replace pattern for source namespace</param>
<param name="nsSourceFilterRegEx">RegEx filter pattern for source namespace</param>
<param name="nsTargetRegEx">RegEx replace value for target namespace</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddNamespaceMapping(System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping based on simple namespace mapping
</summary>
<param name="nsSource">Namespace of source type</param>
<param name="nsTargets">Namespaces of target type as an array</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddNamespaceMapping(System.String,System.String,System.String)">
<summary>
Adds a standard type mapping based on simple namespace mapping
</summary>
<param name="nsSource">Namespace of source type</param>
<param name="nsTarget">Namespace of target type</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddSubNamespaceMapping(System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping by substituting one subnamespace for another
</summary>
<param name="nsSource">Subnamespace of source type</param>
<param name="nsTargets">Subnamespaces of target type as an array</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.AddSubNamespaceMapping(System.String,System.String,System.String)">
<summary>
Adds a standard type mapping by substituting one subnamespace for another
</summary>
<param name="nsSource">Subnamespace of source type</param>
<param name="nsTarget">Subnamespace of target type</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewModelLocator.MakeInterface(System.String)">
<summary>
Makes a type name into an interface name.
</summary>
<param name = "typeName">The part.</param>
<returns></returns>
</member>
<member name="F:Caliburn.Micro.ViewModelLocator.TransformName">
<summary>
Transforms a View type name into all of its possible ViewModel type names. Accepts a flag
to include or exclude interface types.
</summary>
<returns>Enumeration of transformed names</returns>
<remarks>Arguments:
typeName = The name of the View type being resolved to its companion ViewModel.
includeInterfaces = Flag to indicate if interface types are included
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewModelLocator.LocateTypeForViewType">
<summary>
Determines the view model type based on the specified view type.
</summary>
<returns>The view model type.</returns>
<remarks>
Pass the view type and receive a view model type. Pass true for the second parameter to search for interfaces.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewModelLocator.LocateForViewType">
<summary>
Locates the view model for the specified view type.
</summary>
<returns>The view model.</returns>
<remarks>
Pass the view type as a parameter and receive a view model instance.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewModelLocator.LocateForView">
<summary>
Locates the view model for the specified view instance.
</summary>
<returns>The view model.</returns>
<remarks>
Pass the view instance as a parameters and receive a view model instance.
</remarks>
</member>
<member name="T:Caliburn.Micro.IoC">
<summary>
Used by the framework to pull instances from an IoC container and to inject dependencies into certain existing classes.
</summary>
</member>
<member name="F:Caliburn.Micro.IoC.GetInstance">
<summary>
Gets an instance by type and key.
</summary>
</member>
<member name="F:Caliburn.Micro.IoC.GetAllInstances">
<summary>
Gets all instances of a particular type.
</summary>
</member>
<member name="F:Caliburn.Micro.IoC.BuildUp">
<summary>
Passes an existing instance to the IoC container to enable dependencies to be injected.
</summary>
</member>
<member name="M:Caliburn.Micro.IoC.Get``1">
<summary>
Gets an instance by type.
</summary>
<typeparam name="T">The type to resolve from the container.</typeparam>
<returns>The resolved instance.</returns>
</member>
<member name="M:Caliburn.Micro.IoC.Get``1(System.String)">
<summary>
Gets an instance from the container using type and key.
</summary>
<typeparam name="T">The type to resolve.</typeparam>
<param name="key">The key to look up.</param>
<returns>The resolved instance.</returns>
</member>
<member name="T:Caliburn.Micro.Action">
<summary>
A host for action related attached properties.
</summary>
</member>
<member name="F:Caliburn.Micro.Action.TargetProperty">
<summary>
A property definition representing the target of an <see cref="T:Caliburn.Micro.ActionMessage"/> . The DataContext of the element will be set to this instance.
</summary>
</member>
<member name="F:Caliburn.Micro.Action.TargetWithoutContextProperty">
<summary>
A property definition representing the target of an <see cref="T:Caliburn.Micro.ActionMessage"/> . The DataContext of the element is not set to this instance.
</summary>
</member>
<member name="M:Caliburn.Micro.Action.SetTarget(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the target of the <see cref="T:Caliburn.Micro.ActionMessage"/> .
</summary>
<param name="d"> The element to attach the target to. </param>
<param name="target"> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage"/> . </param>
</member>
<member name="M:Caliburn.Micro.Action.GetTarget(System.Windows.DependencyObject)">
<summary>
Gets the target for instances of <see cref="T:Caliburn.Micro.ActionMessage"/> .
</summary>
<param name="d"> The element to which the target is attached. </param>
<returns> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage"/> </returns>
</member>
<member name="M:Caliburn.Micro.Action.SetTargetWithoutContext(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the target of the <see cref="T:Caliburn.Micro.ActionMessage"/> .
</summary>
<param name="d"> The element to attach the target to. </param>
<param name="target"> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage"/> . </param>
<remarks>
The DataContext will not be set.
</remarks>
</member>
<member name="M:Caliburn.Micro.Action.GetTargetWithoutContext(System.Windows.DependencyObject)">
<summary>
Gets the target for instances of <see cref="T:Caliburn.Micro.ActionMessage"/> .
</summary>
<param name="d"> The element to which the target is attached. </param>
<returns> The target for instances of <see cref="T:Caliburn.Micro.ActionMessage"/> </returns>
</member>
<member name="M:Caliburn.Micro.Action.HasTargetSet(System.Windows.DependencyObject)">
<summary>
Checks if the <see cref="T:Caliburn.Micro.ActionMessage"/> -Target was set.
</summary>
<param name="element"> DependencyObject to check </param>
<returns> True if Target or TargetWithoutContext was set on <paramref name="element"/> </returns>
</member>
<member name="M:Caliburn.Micro.Action.Invoke(System.Object,System.String,System.Windows.DependencyObject,System.Windows.FrameworkElement,System.Object,System.Object[])">
<summary>
Uses the action pipeline to invoke the method.
</summary>
<param name="target"> The object instance to invoke the method on. </param>
<param name="methodName"> The name of the method to invoke. </param>
<param name="view"> The view. </param>
<param name="source"> The source of the invocation. </param>
<param name="eventArgs"> The event args. </param>
<param name="parameters"> The method parameters. </param>
</member>
<member name="T:Caliburn.Micro.ScreenExtensions">
<summary>
Hosts extension methods for <see cref="T:Caliburn.Micro.IScreen"/> classes.
</summary>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.TryActivate(System.Object)">
<summary>
Activates the item if it implements <see cref="T:Caliburn.Micro.IActivate"/>, otherwise does nothing.
</summary>
<param name="potentialActivatable">The potential activatable.</param>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.TryDeactivate(System.Object,System.Boolean)">
<summary>
Deactivates the item if it implements <see cref="T:Caliburn.Micro.IDeactivate"/>, otherwise does nothing.
</summary>
<param name="potentialDeactivatable">The potential deactivatable.</param>
<param name="close">Indicates whether or not to close the item after deactivating it.</param>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.CloseItem(Caliburn.Micro.IConductor,System.Object)">
<summary>
Closes the specified item.
</summary>
<param name="conductor">The conductor.</param>
<param name="item">The item to close.</param>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.CloseItem``1(Caliburn.Micro.ConductorBase{``0},``0)">
<summary>
Closes the specified item.
</summary>
<param name="conductor">The conductor.</param>
<param name="item">The item to close.</param>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.ActivateWith(Caliburn.Micro.IActivate,Caliburn.Micro.IActivate)">
<summary>
Activates a child whenever the specified parent is activated.
</summary>
<param name="child">The child to activate.</param>
<param name="parent">The parent whose activation triggers the child's activation.</param>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.DeactivateWith(Caliburn.Micro.IDeactivate,Caliburn.Micro.IDeactivate)">
<summary>
Deactivates a child whenever the specified parent is deactivated.
</summary>
<param name="child">The child to deactivate.</param>
<param name="parent">The parent whose deactivation triggers the child's deactivation.</param>
</member>
<member name="M:Caliburn.Micro.ScreenExtensions.ConductWith``2(``0,``1)">
<summary>
Activates and Deactivates a child whenever the specified parent is Activated or Deactivated.
</summary>
<param name="child">The child to activate/deactivate.</param>
<param name="parent">The parent whose activation/deactivation triggers the child's activation/deactivation.</param>
</member>
<member name="T:Caliburn.Micro.ExtensionMethods">
<summary>
Generic extension methods used by the framework.
</summary>
</member>
<member name="M:Caliburn.Micro.ExtensionMethods.GetAssemblyName(System.Reflection.Assembly)">
<summary>
Get's the name of the assembly.
</summary>
<param name="assembly">The assembly.</param>
<returns>The assembly's name.</returns>
</member>
<member name="M:Caliburn.Micro.ExtensionMethods.GetAttributes``1(System.Reflection.MemberInfo,System.Boolean)">
<summary>
Gets all the attributes of a particular type.
</summary>
<typeparam name="T">The type of attributes to get.</typeparam>
<param name="member">The member to inspect for attributes.</param>
<param name="inherit">Whether or not to search for inherited attributes.</param>
<returns>The list of attributes found.</returns>
</member>
<member name="M:Caliburn.Micro.ExtensionMethods.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="M:Caliburn.Micro.ExtensionMethods.GetMemberInfo(System.Linq.Expressions.Expression)">
<summary>
Converts an expression into a <see cref="T:System.Reflection.MemberInfo"/>.
</summary>
<param name="expression">The expression to convert.</param>
<returns>The member info.</returns>
</member>
<member name="T:Caliburn.Micro.ConventionManager">
<summary>
Used to configure the conventions used by the framework to apply bindings and create actions.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.BooleanToVisibilityConverter">
<summary>
Converters <see cref="T:System.Boolean"/> to/from <see cref="T:System.Windows.Visibility"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.IncludeStaticProperties">
<summary>
Indicates whether or not static properties should be included during convention name matching.
</summary>
<remarks>False by default.</remarks>
</member>
<member name="F:Caliburn.Micro.ConventionManager.OverwriteContent">
<summary>
Indicates whether or not the Content of ContentControls should be overwritten by conventional bindings.
</summary>
<remarks>False by default.</remarks>
</member>
<member name="F:Caliburn.Micro.ConventionManager.DefaultItemTemplate">
<summary>
The default DataTemplate used for ItemsControls when required.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.DefaultHeaderTemplate">
<summary>
The default DataTemplate used for Headered controls when required.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.Singularize">
<summary>
Changes the provided word from a plural form to a singular form.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.DerivePotentialSelectionNames">
<summary>
Derives the SelectedItem property name.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.SetBinding">
<summary>
Creates a binding and sets it on the element, applying the appropriate conventions.
</summary>
<param name="viewModelType"></param>
<param name="path"></param>
<param name="property"></param>
<param name="element"></param>
<param name="convention"></param>
<param name="bindableProperty"></param>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyBindingMode">
<summary>
Applies the appropriate binding mode to the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyValidation">
<summary>
Determines whether or not and what type of validation to enable on the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyValueConverter">
<summary>
Determines whether a value converter is is needed and applies one to the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyStringFormat">
<summary>
Determines whether a custom string format is needed and applies it to the binding.
</summary>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ApplyUpdateSourceTrigger">
<summary>
Determines whether a custom update source trigger should be applied to the binding.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.AddElementConvention``1(System.Windows.DependencyProperty,System.String,System.String)">
<summary>
Adds an element convention.
</summary>
<typeparam name="T">The type of element.</typeparam>
<param name="bindableProperty">The default property for binding conventions.</param>
<param name="parameterProperty">The default property for action parameters.</param>
<param name="eventName">The default event to trigger actions.</param>
</member>
<member name="M:Caliburn.Micro.ConventionManager.AddElementConvention(Caliburn.Micro.ElementConvention)">
<summary>
Adds an element convention.
</summary>
<param name="convention"></param>
</member>
<member name="M:Caliburn.Micro.ConventionManager.GetElementConvention(System.Type)">
<summary>
Gets an element convention for the provided element type.
</summary>
<param name="elementType">The type of element to locate the convention for.</param>
<returns>The convention if found, null otherwise.</returns>
<remarks>Searches the class hierarchy for conventions.</remarks>
</member>
<member name="M:Caliburn.Micro.ConventionManager.HasBinding(System.Windows.FrameworkElement,System.Windows.DependencyProperty)">
<summary>
Determines whether a particular dependency property already has a binding on the provided element.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.SetBindingWithoutBindingOverwrite(System.Type,System.String,System.Reflection.PropertyInfo,System.Windows.FrameworkElement,Caliburn.Micro.ElementConvention,System.Windows.DependencyProperty)">
<summary>
Creates a binding and sets it on the element, guarding against pre-existing bindings.
</summary>
</member>
<member name="M:Caliburn.Micro.ConventionManager.SetBindingWithoutBindingOrValueOverwrite(System.Type,System.String,System.Reflection.PropertyInfo,System.Windows.FrameworkElement,Caliburn.Micro.ElementConvention,System.Windows.DependencyProperty)">
<summary>
Creates a binding and set it on the element, guarding against pre-existing bindings and pre-existing values.
</summary>
<param name="viewModelType"></param>
<param name="path"></param>
<param name="property"></param>
<param name="element"></param>
<param name="convention"></param>
<param name="bindableProperty"> </param>
<returns></returns>
</member>
<member name="M:Caliburn.Micro.ConventionManager.ApplyItemTemplate(System.Windows.Controls.ItemsControl,System.Reflection.PropertyInfo)">
<summary>
Attempts to apply the default item template to the items control.
</summary>
<param name="itemsControl">The items control.</param>
<param name="property">The collection property.</param>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ConfigureSelectedItem">
<summary>
Configures the selected item convention.
</summary>
<param name="selector">The element that has a SelectedItem property.</param>
<param name="selectedItemProperty">The SelectedItem property.</param>
<param name="viewModelType">The view model type.</param>
<param name="path">The property path.</param>
</member>
<member name="F:Caliburn.Micro.ConventionManager.ConfigureSelectedItemBinding">
<summary>
Configures the SelectedItem binding for matched selection path.
</summary>
<param name="selector">The element that has a SelectedItem property.</param>
<param name="selectedItemProperty">The SelectedItem property.</param>
<param name="viewModelType">The view model type.</param>
<param name="selectionPath">The property path.</param>
<param name="binding">The binding to configure.</param>
<returns>A bool indicating whether to apply binding</returns>
</member>
<member name="M:Caliburn.Micro.ConventionManager.ApplyHeaderTemplate(System.Windows.FrameworkElement,System.Windows.DependencyProperty,System.Windows.DependencyProperty,System.Type)">
<summary>
Applies a header template based on <see cref="T:Caliburn.Micro.IHaveDisplayName"/>
</summary>
<param name="element"></param>
<param name="headerTemplateProperty"></param>
<param name="headerTemplateSelectorProperty"> </param>
<param name="viewModelType"></param>
</member>
<member name="M:Caliburn.Micro.ConventionManager.GetPropertyCaseInsensitive(System.Type,System.String)">
<summary>
Gets a property by name, ignoring case and searching all interfaces.
</summary>
<param name="type">The type to inspect.</param>
<param name="propertyName">The property to search for.</param>
<returns>The property or null if not found.</returns>
</member>
<member name="T:Caliburn.Micro.AssemblySource">
<summary>
A source of assemblies that are inspectable by the framework.
</summary>
</member>
<member name="F:Caliburn.Micro.AssemblySource.Instance">
<summary>
The singleton instance of the AssemblySource used by the framework.
</summary>
</member>
<member name="T:Caliburn.Micro.Message">
<summary>
Host's attached properties related to routed UI messaging.
</summary>
</member>
<member name="M:Caliburn.Micro.Message.SetHandler(System.Windows.DependencyObject,System.Object)">
<summary>
Places a message handler on this element.
</summary>
<param name="d"> The element. </param>
<param name="value"> The message handler. </param>
</member>
<member name="M:Caliburn.Micro.Message.GetHandler(System.Windows.DependencyObject)">
<summary>
Gets the message handler for this element.
</summary>
<param name="d"> The element. </param>
<returns> The message handler. </returns>
</member>
<member name="F:Caliburn.Micro.Message.AttachProperty">
<summary>
A property definition representing attached triggers and messages.
</summary>
</member>
<member name="M:Caliburn.Micro.Message.SetAttach(System.Windows.DependencyObject,System.String)">
<summary>
Sets the attached triggers and messages.
</summary>
<param name="d"> The element to attach to. </param>
<param name="attachText"> The parsable attachment text. </param>
</member>
<member name="M:Caliburn.Micro.Message.GetAttach(System.Windows.DependencyObject)">
<summary>
Gets the attached triggers and messages.
</summary>
<param name="d"> The element that was attached to. </param>
<returns> The parsable attachment text. </returns>
</member>
<member name="T:Caliburn.Micro.IHaveParameters">
<summary>
Indicates that a message is parameterized.
</summary>
</member>
<member name="P:Caliburn.Micro.IHaveParameters.Parameters">
<summary>
Represents the parameters of a message.
</summary>
</member>
<member name="T:Caliburn.Micro.ElementConvention">
<summary>
Represents the conventions for a particular element type.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.ElementType">
<summary>
The type of element to which the conventions apply.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.GetBindableProperty">
<summary>
Gets the default property to be used in binding conventions.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.CreateTrigger">
<summary>
The default trigger to be used when wiring actions on this element.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.ParameterProperty">
<summary>
The default property to be used for parameters of this type in actions.
</summary>
</member>
<member name="F:Caliburn.Micro.ElementConvention.ApplyBinding">
<summary>
Applies custom conventions for elements of this type.
</summary>
<remarks>Pass the view model type, property path, property instance, framework element and its convention.</remarks>
</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.ActionExecutionContext,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="E:Caliburn.Micro.Coroutine.Completed">
<summary>
Called upon completion of a coroutine.
</summary>
</member>
<member name="T:Caliburn.Micro.ViewLocator">
<summary>
A strategy for determining which view to use for a given model.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewLocator.NameTransformer">
<summary>
Used to transform names.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewLocator.ContextSeparator">
<summary>
Separator used when resolving View names for context instances.
</summary>
</member>
<member name="M:Caliburn.Micro.ViewLocator.ConfigureTypeMappings(Caliburn.Micro.TypeMappingConfiguration)">
<summary>
Specifies how type mappings are created, including default type mappings. Calling this method will
clear all existing name transformation rules and create new default type mappings according to the
configuration.
</summary>
<param name="config">An instance of TypeMappingConfiguration that provides the settings for configuration</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddDefaultTypeMapping(System.String)">
<summary>
Adds a default type mapping using the standard namespace mapping convention
</summary>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.RegisterViewSuffix(System.String)">
<summary>
This method registers a View suffix or synonym so that View Context resolution works properly.
It is automatically called internally when calling AddNamespaceMapping(), AddDefaultTypeMapping(),
or AddTypeMapping(). It should not need to be called explicitly unless a rule that handles synonyms
is added directly through the NameTransformer.
</summary>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View".</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddTypeMapping(System.String,System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping based on namespace RegEx replace and filter patterns
</summary>
<param name="nsSourceReplaceRegEx">RegEx replace pattern for source namespace</param>
<param name="nsSourceFilterRegEx">RegEx filter pattern for source namespace</param>
<param name="nsTargetsRegEx">Array of RegEx replace values for target namespaces</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddTypeMapping(System.String,System.String,System.String,System.String)">
<summary>
Adds a standard type mapping based on namespace RegEx replace and filter patterns
</summary>
<param name="nsSourceReplaceRegEx">RegEx replace pattern for source namespace</param>
<param name="nsSourceFilterRegEx">RegEx filter pattern for source namespace</param>
<param name="nsTargetRegEx">RegEx replace value for target namespace</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddNamespaceMapping(System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping based on simple namespace mapping
</summary>
<param name="nsSource">Namespace of source type</param>
<param name="nsTargets">Namespaces of target type as an array</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddNamespaceMapping(System.String,System.String,System.String)">
<summary>
Adds a standard type mapping based on simple namespace mapping
</summary>
<param name="nsSource">Namespace of source type</param>
<param name="nsTarget">Namespace of target type</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddSubNamespaceMapping(System.String,System.String[],System.String)">
<summary>
Adds a standard type mapping by substituting one subnamespace for another
</summary>
<param name="nsSource">Subnamespace of source type</param>
<param name="nsTargets">Subnamespaces of target type as an array</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="M:Caliburn.Micro.ViewLocator.AddSubNamespaceMapping(System.String,System.String,System.String)">
<summary>
Adds a standard type mapping by substituting one subnamespace for another
</summary>
<param name="nsSource">Subnamespace of source type</param>
<param name="nsTarget">Subnamespace of target type</param>
<param name="viewSuffix">Suffix for type name. Should be "View" or synonym of "View". (Optional)</param>
</member>
<member name="F:Caliburn.Micro.ViewLocator.GetOrCreateViewType">
<summary>
Retrieves the view from the IoC container or tries to create it if not found.
</summary>
<remarks>
Pass the type of view as a parameter and recieve an instance of the view.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewLocator.ModifyModelTypeAtDesignTime">
<summary>
Modifies the name of the type to be used at design time.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewLocator.TransformName">
<summary>
Transforms a ViewModel type name into all of its possible View type names. Optionally accepts an instance
of context object
</summary>
<returns>Enumeration of transformed names</returns>
<remarks>Arguments:
typeName = The name of the ViewModel type being resolved to its companion View.
context = An instance of the context or null.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewLocator.LocateTypeForModelType">
<summary>
Locates the view type based on the specified model type.
</summary>
<returns>The view.</returns>
<remarks>
Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view type.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewLocator.LocateForModelType">
<summary>
Locates the view for the specified model type.
</summary>
<returns>The view.</returns>
<remarks>
Pass the model type, display location (or null) and the context instance (or null) as parameters and receive a view instance.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewLocator.LocateForModel">
<summary>
Locates the view for the specified model instance.
</summary>
<returns>The view.</returns>
<remarks>
Pass the model instance, display location (or null) and the context (or null) as parameters and receive a view instance.
</remarks>
</member>
<member name="F:Caliburn.Micro.ViewLocator.DeterminePackUriFromType">
<summary>
Transforms a view type into a pack uri.
</summary>
</member>
<member name="M:Caliburn.Micro.ViewLocator.InitializeComponent(System.Object)">
<summary>
When a view does not contain a code-behind file, we need to automatically call InitializeCompoent.
</summary>
<param name = "element">The element to initialize</param>
</member>
<member name="T:Caliburn.Micro.MessageBinder">
<summary>
A service that is capable of properly binding values to a method's parameters and creating instances of <see cref="T:Caliburn.Micro.IResult"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.MessageBinder.SpecialValues">
<summary>
The special parameter values recognized by the message binder along with their resolvers.
</summary>
</member>
<member name="F:Caliburn.Micro.MessageBinder.CustomConverters">
<summary>
Custom converters used by the framework registered by destination type for which they will be selected.
The converter is passed the existing value to convert and a "context" object.
</summary>
</member>
<member name="M:Caliburn.Micro.MessageBinder.DetermineParameters(Caliburn.Micro.ActionExecutionContext,System.Reflection.ParameterInfo[])">
<summary>
Determines the parameters that a method should be invoked with.
</summary>
<param name="context">The action execution context.</param>
<param name="requiredParameters">The parameters required to complete the invocation.</param>
<returns>The actual parameter values.</returns>
</member>
<member name="F:Caliburn.Micro.MessageBinder.EvaluateParameter">
<summary>
Transforms the textual parameter into the actual parameter.
</summary>
</member>
<member name="M:Caliburn.Micro.MessageBinder.CoerceValue(System.Type,System.Object,System.Object)">
<summary>
Coerces the provided value to the destination type.
</summary>
<param name="destinationType">The destination type.</param>
<param name="providedValue">The provided value.</param>
<param name="context">An optional context value which can be used during conversion.</param>
<returns>The coerced value.</returns>
</member>
<member name="M:Caliburn.Micro.MessageBinder.GetDefaultValue(System.Type)">
<summary>
Gets the default value for a type.
</summary>
<param name="type">The type.</param>
<returns>The default value.</returns>
</member>
<member name="T:Caliburn.Micro.ICloseStrategy`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.ICloseStrategy`1.Execute(System.Collections.Generic.IEnumerable{`0},System.Action{System.Boolean,System.Collections.Generic.IEnumerable{`0}})">
<summary>
Executes the strategy.
</summary>
<param name="toClose">Items that are requesting close.</param>
<param name="callback">The action to call when all enumeration is complete and the close results are aggregated.
The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot.</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.Execute(System.Collections.Generic.IEnumerable{`0},System.Action{System.Boolean,System.Collections.Generic.IEnumerable{`0}})">
<summary>
Executes the strategy.
</summary>
<param name="toClose">Items that are requesting close.</param>
<param name="callback">The action to call when all enumeration is complete and the close results are aggregated.
The bool indicates whether close can occur. The enumerable indicates which children should close if the parent cannot.</param>
</member>
<member name="T:Caliburn.Micro.IHandle">
<summary>
A marker interface for classes that subscribe to messages.
</summary>
</member>
<member name="T:Caliburn.Micro.IHandle`1">
<summary>
Denotes a class which can handle a particular type of message.
</summary>
<typeparam name = "TMessage">The type of message to handle.</typeparam>
</member>
<member name="M:Caliburn.Micro.IHandle`1.Handle(`0)">
<summary>
Handles the message.
</summary>
<param name = "message">The message.</param>
</member>
<member name="T:Caliburn.Micro.IEventAggregator">
<summary>
Enables loosely-coupled publication of and subscription to events.
</summary>
</member>
<member name="M:Caliburn.Micro.IEventAggregator.Subscribe(System.Object)">
<summary>
Subscribes an instance to all events declared through implementations of <see cref="T:Caliburn.Micro.IHandle`1"/>
</summary>
<param name="instance">The instance to subscribe for event publication.</param>
</member>
<member name="M:Caliburn.Micro.IEventAggregator.Unsubscribe(System.Object)">
<summary>
Unsubscribes the instance from all events.
</summary>
<param name = "instance">The instance to unsubscribe.</param>
</member>
<member name="M:Caliburn.Micro.IEventAggregator.Publish(System.Object)">
<summary>
Publishes a message.
</summary>
<param name = "message">The message instance.</param>
<remarks>
Uses the default thread marshaller during publication.
</remarks>
</member>
<member name="M:Caliburn.Micro.IEventAggregator.Publish(System.Object,System.Action{System.Action})">
<summary>
Publishes a message.
</summary>
<param name = "message">The message instance.</param>
<param name = "marshal">Allows the publisher to provide a custom thread marshaller for the message publication.</param>
</member>
<member name="P:Caliburn.Micro.IEventAggregator.PublicationThreadMarshaller">
<summary>
Gets or sets the default publication thread marshaller.
</summary>
<value>
The default publication thread marshaller.
</value>
</member>
<member name="T:Caliburn.Micro.EventAggregator">
<summary>
Enables loosely-coupled publication of and subscription to events.
</summary>
</member>
<member name="F:Caliburn.Micro.EventAggregator.DefaultPublicationThreadMarshaller">
<summary>
The default thread marshaller used for publication;
</summary>
</member>
<member name="M:Caliburn.Micro.EventAggregator.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.EventAggregator"/> class.
</summary>
</member>
<member name="M:Caliburn.Micro.EventAggregator.Subscribe(System.Object)">
<summary>
Subscribes an instance to all events declared through implementations of <see cref="T:Caliburn.Micro.IHandle`1"/>
</summary>
<param name="instance">The instance to subscribe for event publication.</param>
</member>
<member name="M:Caliburn.Micro.EventAggregator.Unsubscribe(System.Object)">
<summary>
Unsubscribes the instance from all events.
</summary>
<param name = "instance">The instance to unsubscribe.</param>
</member>
<member name="M:Caliburn.Micro.EventAggregator.Publish(System.Object)">
<summary>
Publishes a message.
</summary>
<param name = "message">The message instance.</param>
<remarks>
Does not marshall the the publication to any special thread by default.
</remarks>
</member>
<member name="M:Caliburn.Micro.EventAggregator.Publish(System.Object,System.Action{System.Action})">
<summary>
Publishes a message.
</summary>
<param name = "message">The message instance.</param>
<param name = "marshal">Allows the publisher to provide a custom thread marshaller for the message publication.</param>
</member>
<member name="P:Caliburn.Micro.EventAggregator.PublicationThreadMarshaller">
<summary>
Gets or sets the default publication thread marshaller.
</summary>
<value>
The default publication thread marshaller.
</value>
</member>
<member name="T:Caliburn.Micro.ViewAttachedEventArgs">
<summary>
The event args for the <see cref="E:Caliburn.Micro.IViewAware.ViewAttached"/> event.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewAttachedEventArgs.View">
<summary>
The view.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewAttachedEventArgs.Context">
<summary>
The context.
</summary>
</member>
<member name="T:Caliburn.Micro.IChild`1">
<summary>
Denotes a node within a parent/child hierarchy.
</summary>
<typeparam name="TParent">The type of parent.</typeparam>
</member>
<member name="P:Caliburn.Micro.IChild`1.Parent">
<summary>
Gets or Sets the Parent
</summary>
</member>
<member name="T:Caliburn.Micro.ActionMessage">
<summary>
Used to send a message from the UI to a presentation model class, indicating that a particular Action should be invoked.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.EnforceGuardsDuringInvocation">
<summary>
Causes the action invocation to "double check" if the action should be invoked by executing the guard immediately before hand.
</summary>
<remarks>This is disabled by default. If multiple actions are attached to the same element, you may want to enable this so that each individaul action checks its guard regardless of how the UI state appears.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionMessage.ThrowsExceptions">
<summary>
Causes the action to throw if it cannot locate the target or the method at invocation time.
</summary>
<remarks>True by default.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionMessage.MethodNameProperty">
<summary>
Represents the method name of an action message.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.ParametersProperty">
<summary>
Represents the parameters of an action message.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.#ctor">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.ActionMessage"/>.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.OnAttached">
<summary>
Called after the action is attached to an AssociatedObject.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.OnDetaching">
<summary>
Called when the action is being detached from its AssociatedObject, but before it has actually occurred.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.Invoke(System.Object)">
<summary>
Invokes the action.
</summary>
<param name="eventArgs">The parameter to the action. If the action does not require a parameter, the parameter may be set to a null reference.</param>
</member>
<member name="M:Caliburn.Micro.ActionMessage.UpdateAvailability">
<summary>
Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="F:Caliburn.Micro.ActionMessage.InvokeAction">
<summary>
Invokes the action using the specified <see cref="T:Caliburn.Micro.ActionExecutionContext"/>
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.ApplyAvailabilityEffect">
<summary>
Applies an availability effect, such as IsEnabled, to an element.
</summary>
<remarks>Returns a value indicating whether or not the action is available.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionMessage.GetTargetMethod">
<summary>
Finds the method on the target matching the specified message.
</summary>
<param name="target">The target.</param>
<param name="message">The message.</param>
<returns>The matching method, if available.</returns>
</member>
<member name="F:Caliburn.Micro.ActionMessage.SetMethodBinding">
<summary>
Sets the target, method and view on the context. Uses a bubbling strategy by default.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionMessage.PrepareContext">
<summary>
Prepares the action execution context for use.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionMessage.TryFindGuardMethod(Caliburn.Micro.ActionExecutionContext)">
<summary>
Try to find a candidate for guard function, having:
- a name in the form "CanXXX"
- no generic parameters
- a bool return type
- no parameters or a set of parameters corresponding to the action method
</summary>
<param name="context">The execution context</param>
<returns>A MethodInfo, if found; null otherwise</returns>
</member>
<member name="P:Caliburn.Micro.ActionMessage.MethodName">
<summary>
Gets or sets the name of the method to be invoked on the presentation model class.
</summary>
<value>The name of the method.</value>
</member>
<member name="P:Caliburn.Micro.ActionMessage.Parameters">
<summary>
Gets the parameters to pass as part of the method invocation.
</summary>
<value>The parameters.</value>
</member>
<member name="E:Caliburn.Micro.ActionMessage.Detaching">
<summary>
Occurs before the message detaches from the associated object.
</summary>
</member>
<member name="T:Caliburn.Micro.NameTransformer">
<summary>
Class for managing the list of rules for doing name transformation.
</summary>
</member>
<member name="M:Caliburn.Micro.NameTransformer.AddRule(System.String,System.String,System.String)">
<summary>
Adds a transform using a single replacement value and a global filter pattern.
</summary>
<param name = "replacePattern">Regular expression pattern for replacing text</param>
<param name = "replaceValue">The replacement value.</param>
<param name = "globalFilterPattern">Regular expression pattern for global filtering</param>
</member>
<member name="M:Caliburn.Micro.NameTransformer.AddRule(System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
<summary>
Adds a transform using a list of replacement values and a global filter pattern.
</summary>
<param name = "replacePattern">Regular expression pattern for replacing text</param>
<param name = "replaceValueList">The list of replacement values</param>
<param name = "globalFilterPattern">Regular expression pattern for global filtering</param>
</member>
<member name="M:Caliburn.Micro.NameTransformer.Transform(System.String)">
<summary>
Gets the list of transformations for a given name.
</summary>
<param name = "source">The name to transform into the resolved name list</param>
<returns>The transformed names.</returns>
</member>
<member name="M:Caliburn.Micro.NameTransformer.Transform(System.String,System.Func{System.String,System.String})">
<summary>
Gets the list of transformations for a given name.
</summary>
<param name = "source">The name to transform into the resolved name list</param>
<param name = "getReplaceString">A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform</param>
<returns>The transformed names.</returns>
</member>
<member name="P:Caliburn.Micro.NameTransformer.UseEagerRuleSelection">
<summary>
Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned.
</summary>
</member>
<member name="T:Caliburn.Micro.NameTransformer.Rule">
<summary>
A rule that describes a name transform.
</summary>
</member>
<member name="F:Caliburn.Micro.NameTransformer.Rule.GlobalFilterPattern">
<summary>
Regular expression pattern for global filtering
</summary>
</member>
<member name="F:Caliburn.Micro.NameTransformer.Rule.ReplacePattern">
<summary>
Regular expression pattern for replacing text
</summary>
</member>
<member name="F:Caliburn.Micro.NameTransformer.Rule.ReplacementValues">
<summary>
The list of replacement values
</summary>
</member>
<member name="T:Caliburn.Micro.ActivationEventArgs">
<summary>
EventArgs sent during activation.
</summary>
</member>
<member name="F: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="F:Caliburn.Micro.ActivationProcessedEventArgs.Item">
<summary>
The item whose activation was processed.
</summary>
</member>
<member name="F: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.DeactivationEventArgs">
<summary>
EventArgs sent during deactivation.
</summary>
</member>
<member name="F:Caliburn.Micro.DeactivationEventArgs.WasClosed">
<summary>
Indicates whether the sender was closed in addition to being deactivated.
</summary>
</member>
<member name="T:Caliburn.Micro.ActionExecutionContext">
<summary>
The context used during the execution of an Action or its guard.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionExecutionContext.CanExecute">
<summary>
Determines whether the action can execute.
</summary>
<remarks>Returns true if the action can execute, false otherwise.</remarks>
</member>
<member name="F:Caliburn.Micro.ActionExecutionContext.EventArgs">
<summary>
Any event arguments associated with the action's invocation.
</summary>
</member>
<member name="F:Caliburn.Micro.ActionExecutionContext.Method">
<summary>
The actual method info to be invoked.
</summary>
</member>
<member name="M:Caliburn.Micro.ActionExecutionContext.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Message">
<summary>
The message being executed.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Source">
<summary>
The source from which the message originates.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Target">
<summary>
The instance on which the action is invoked.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.View">
<summary>
The view associated with the target.
</summary>
</member>
<member name="P:Caliburn.Micro.ActionExecutionContext.Item(System.String)">
<summary>
Gets or sets additional data needed to invoke the action.
</summary>
<param name="key">The data key.</param>
<returns>Custom data associated with the context.</returns>
</member>
<member name="E:Caliburn.Micro.ActionExecutionContext.Disposing">
<summary>
Called when the execution context is disposed
</summary>
</member>
<member name="T:Caliburn.Micro.ResultCompletionEventArgs">
<summary>
The event args for the Completed event of an <see cref="T:Caliburn.Micro.IResult"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.ResultCompletionEventArgs.Error">
<summary>
Gets or sets the error if one occurred.
</summary>
<value>The error.</value>
</member>
<member name="F:Caliburn.Micro.ResultCompletionEventArgs.WasCancelled">
<summary>
Gets or sets a value indicating whether the result was cancelled.
</summary>
<value><c>true</c> if cancelled; otherwise, <c>false</c>.</value>
</member>
<member name="T:Caliburn.Micro.BindingScope">
<summary>
Provides methods for searching a given scope for named elements.
</summary>
</member>
<member name="M:Caliburn.Micro.BindingScope.FindName(System.Collections.Generic.IEnumerable{System.Windows.FrameworkElement},System.String)">
<summary>
Searches through the list of named elements looking for a case-insensitive match.
</summary>
<param name="elementsToSearch">The named elements to search through.</param>
<param name="name">The name to search for.</param>
<returns>The named element or null if not found.</returns>
</member>
<member name="F:Caliburn.Micro.BindingScope.GetNamedElements">
<summary>
Gets all the <see cref="T:System.Windows.FrameworkElement"/> instances with names in the scope.
</summary>
<returns>Named <see cref="T:System.Windows.FrameworkElement"/> instances in the provided scope.</returns>
<remarks>Pass in a <see cref="T:System.Windows.DependencyObject"/> and receive a list of named <see cref="T:System.Windows.FrameworkElement"/> instances in the same scope.</remarks>
</member>
<member name="T:Caliburn.Micro.IWindowManager">
<summary>
A service that manages windows.
</summary>
</member>
<member name="M:Caliburn.Micro.IWindowManager.ShowDialog(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Shows a modal dialog for the specified model.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The context.</param>
<param name="settings">The optional dialog settings.</param>
<returns>The dialog result.</returns>
</member>
<member name="M:Caliburn.Micro.IWindowManager.ShowWindow(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Shows a non-modal window for the specified model.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The context.</param>
<param name="settings">The optional window settings.</param>
</member>
<member name="M:Caliburn.Micro.IWindowManager.ShowPopup(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Shows a popup at the current mouse position.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The view context.</param>
<param name="settings">The optional popup settings.</param>
</member>
<member name="T:Caliburn.Micro.WindowManager">
<summary>
A service that manages windows.
</summary>
</member>
<member name="M:Caliburn.Micro.WindowManager.ShowDialog(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Shows a modal dialog for the specified model.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The context.</param>
<param name="settings">The dialog popup settings.</param>
<returns>The dialog result.</returns>
</member>
<member name="M:Caliburn.Micro.WindowManager.ShowWindow(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Shows a window for the specified model.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The context.</param>
<param name="settings">The optional window settings.</param>
</member>
<member name="M:Caliburn.Micro.WindowManager.ShowPopup(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Shows a popup at the current mouse position.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The view context.</param>
<param name="settings">The optional popup settings.</param>
</member>
<member name="M:Caliburn.Micro.WindowManager.CreatePopup(System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Creates a popup for hosting a popup window.
</summary>
<param name="rootModel">The model.</param>
<param name="settings">The optional popup settings.</param>
<returns>The popup.</returns>
</member>
<member name="M:Caliburn.Micro.WindowManager.CreateWindow(System.Object,System.Boolean,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Creates a window.
</summary>
<param name="rootModel">The view model.</param>
<param name="isDialog">Whethor or not the window is being shown as a dialog.</param>
<param name="context">The view context.</param>
<param name="settings">The optional popup settings.</param>
<returns>The window.</returns>
</member>
<member name="M:Caliburn.Micro.WindowManager.EnsureWindow(System.Object,System.Object,System.Boolean)">
<summary>
Makes sure the view is a window is is wrapped by one.
</summary>
<param name="model">The view model.</param>
<param name="view">The view.</param>
<param name="isDialog">Whethor or not the window is being shown as a dialog.</param>
<returns>The window.</returns>
</member>
<member name="M:Caliburn.Micro.WindowManager.InferOwnerOf(System.Windows.Window)">
<summary>
Infers the owner of the window.
</summary>
<param name="window">The window to whose owner needs to be determined.</param>
<returns>The owner.</returns>
</member>
<member name="M:Caliburn.Micro.WindowManager.CreatePage(System.Object,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Creates the page.
</summary>
<param name="rootModel">The root model.</param>
<param name="context">The context.</param>
<param name="settings">The optional popup settings.</param>
<returns>The page.</returns>
</member>
<member name="M:Caliburn.Micro.WindowManager.EnsurePage(System.Object,System.Object)">
<summary>
Ensures the view is a page or provides one.
</summary>
<param name="model">The model.</param>
<param name="view">The view.</param>
<returns>The page.</returns>
</member>
<member name="T:Caliburn.Micro.SequentialResult">
<summary>
An implementation of <see cref="T:Caliburn.Micro.IResult"/> that enables sequential execution of multiple results.
</summary>
</member>
<member name="T:Caliburn.Micro.IResult">
<summary>
Allows custom code to execute after the return of a action.
</summary>
</member>
<member name="M:Caliburn.Micro.IResult.Execute(Caliburn.Micro.ActionExecutionContext)">
<summary>
Executes the result using the specified context.
</summary>
<param name="context">The context.</param>
</member>
<member name="E:Caliburn.Micro.IResult.Completed">
<summary>
Occurs when execution has completed.
</summary>
</member>
<member name="M:Caliburn.Micro.SequentialResult.#ctor(System.Collections.Generic.IEnumerator{Caliburn.Micro.IResult})">
<summary>
Initializes a new instance of the <see cref="T:Caliburn.Micro.SequentialResult"/> class.
</summary>
<param name="enumerator">The enumerator.</param>
</member>
<member name="M:Caliburn.Micro.SequentialResult.Execute(Caliburn.Micro.ActionExecutionContext)">
<summary>
Executes the result using the specified context.
</summary>
<param name = "context">The context.</param>
</member>
<member name="E:Caliburn.Micro.SequentialResult.Completed">
<summary>
Occurs when execution has completed.
</summary>
</member>
<member name="T:Caliburn.Micro.Bootstrapper">
<summary>
Instantiate this class in order to configure the framework.
</summary>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.#ctor(System.Boolean)">
<summary>
Creates an instance of the bootstrapper.
</summary>
<param name="useApplication">Set this to false when hosting Caliburn.Micro inside and Office or WinForms application. The default is true.</param>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.StartDesignTime">
<summary>
Called by the bootstrapper's constructor at design time to start the framework.
</summary>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.StartRuntime">
<summary>
Called by the bootstrapper's constructor at runtime to start the framework.
</summary>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.PrepareApplication">
<summary>
Provides an opportunity to hook into the application object.
</summary>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.Configure">
<summary>
Override to configure the framework and setup your IoC container.
</summary>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.SelectAssemblies">
<summary>
Override to tell the framework where to find assemblies to inspect for views, etc.
</summary>
<returns>A list of assemblies to inspect.</returns>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.GetInstance(System.Type,System.String)">
<summary>
Override this to provide an IoC specific implementation.
</summary>
<param name="service">The service to locate.</param>
<param name="key">The key to locate.</param>
<returns>The located service.</returns>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.GetAllInstances(System.Type)">
<summary>
Override this to provide an IoC specific implementation
</summary>
<param name="service">The service to locate.</param>
<returns>The located services.</returns>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.BuildUp(System.Object)">
<summary>
Override this to provide an IoC specific implementation.
</summary>
<param name="instance">The instance to perform injection on.</param>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.OnStartup(System.Object,System.Windows.StartupEventArgs)">
<summary>
Override this to add custom behavior to execute after the application starts.
</summary>
<param name="sender">The sender.</param>
<param name="e">The args.</param>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.OnExit(System.Object,System.EventArgs)">
<summary>
Override this to add custom behavior on exit.
</summary>
<param name="sender">The sender.</param>
<param name="e">The event args.</param>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.OnUnhandledException(System.Object,System.Windows.Threading.DispatcherUnhandledExceptionEventArgs)">
<summary>
Override this to add custom behavior for unhandled exceptions.
</summary>
<param name="sender">The sender.</param>
<param name="e">The event args.</param>
</member>
<member name="M:Caliburn.Micro.Bootstrapper.DisplayRootViewFor(System.Type)">
<summary>
Locates the view model, locates the associate view, binds them and shows it as the root view.
</summary>
<param name="viewModelType">The view model type.</param>
</member>
<member name="P:Caliburn.Micro.Bootstrapper.Application">
<summary>
The application.
</summary>
</member>
<member name="T:Caliburn.Micro.Bootstrapper`1">
<summary>
A strongly-typed version of <see cref="T:Caliburn.Micro.Bootstrapper"/> that specifies the type of root model to create for the application.
</summary>
<typeparam name="TRootModel">The type of root model for the application.</typeparam>
</member>
<member name="M:Caliburn.Micro.Bootstrapper`1.OnStartup(System.Object,System.Windows.StartupEventArgs)">
<summary>
Override this to add custom behavior to execute after the application starts.
</summary>
<param name="sender">The sender.</param>
<param name="e">The args.</param>
</member>
<member name="T:Caliburn.Micro.TypeMappingConfiguration">
<summary>
Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.DefaultSubNamespaceForViews">
<summary>
The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views".
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.DefaultSubNamespaceForViewModels">
<summary>
The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels".
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.UseNameSuffixesInMappings">
<summary>
Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true.
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.NameFormat">
<summary>
The format string used to compose the name of a type from base name and name suffix
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.IncludeViewSuffixInViewModelNames">
<summary>
Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel)
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.ViewSuffixList">
<summary>
List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true.
Default values are "View", "Page"
</summary>
</member>
<member name="F:Caliburn.Micro.TypeMappingConfiguration.ViewModelSuffix">
<summary>
The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel".
</summary>
</member>
<member name="T:Caliburn.Micro.Bind">
<summary>
Hosts dependency properties for binding.
</summary>
</member>
<member name="F:Caliburn.Micro.Bind.ModelProperty">
<summary>
Allows binding on an existing view. Use this on root UserControls, Pages and Windows; not in a DataTemplate.
</summary>
</member>
<member name="F:Caliburn.Micro.Bind.ModelWithoutContextProperty">
<summary>
Allows binding on an existing view without setting the data context. Use this from within a DataTemplate.
</summary>
</member>
<member name="M:Caliburn.Micro.Bind.GetModelWithoutContext(System.Windows.DependencyObject)">
<summary>
Gets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<returns>The model.</returns>
</member>
<member name="M:Caliburn.Micro.Bind.SetModelWithoutContext(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<param name = "value">The model.</param>
</member>
<member name="M:Caliburn.Micro.Bind.GetModel(System.Windows.DependencyObject)">
<summary>
Gets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<returns>The model.</returns>
</member>
<member name="M:Caliburn.Micro.Bind.SetModel(System.Windows.DependencyObject,System.Object)">
<summary>
Sets the model to bind to.
</summary>
<param name = "dependencyObject">The dependency object to bind to.</param>
<param name = "value">The model.</param>
</member>
<member name="F:Caliburn.Micro.Bind.AtDesignTimeProperty">
<summary>
Allows application of conventions at design-time.
</summary>
</member>
<member name="M:Caliburn.Micro.Bind.SetAtDesignTime(System.Windows.DependencyObject,System.Boolean)">
<summary>
Sets whether or not do bind conventions at design-time.
</summary>
<param name="dependencyObject">The ui to apply conventions to.</param>
<param name="value">Whether or not to apply conventions.</param>
</member>
<member name="T:Caliburn.Micro.AttachedCollection`1">
<summary>
A collection that can exist as part of a behavior.
</summary>
<typeparam name="T">The type of item in the attached collection.</typeparam>
</member>
<member name="M:Caliburn.Micro.AttachedCollection`1.#ctor">
<summary>
Creates an instance of <see cref="T:Caliburn.Micro.AttachedCollection`1"/>
</summary>
</member>
<member name="M:Caliburn.Micro.AttachedCollection`1.Attach(System.Windows.DependencyObject)">
<summary>
Attached the collection.
</summary>
<param name="dependencyObject">The dependency object to attach the collection to.</param>
</member>
<member name="M:Caliburn.Micro.AttachedCollection`1.Detach">
<summary>
Detaches the collection.
</summary>
</member>
<member name="M:Caliburn.Micro.AttachedCollection`1.OnItemAdded(`0)">
<summary>
Called when an item is added from the collection.
</summary>
<param name="item">The item that was added.</param>
</member>
<member name="M:Caliburn.Micro.AttachedCollection`1.OnItemRemoved(`0)">
<summary>
Called when an item is removed from the collection.
</summary>
<param name="item">The item that was removed.</param>
</member>
<member name="T:Caliburn.Micro.ViewModelBinder">
<summary>
Binds a view to a view model.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewModelBinder.ApplyConventionsByDefault">
<summary>
Gets or sets a value indicating whether to apply conventions by default.
</summary>
<value>
<c>true</c> if conventions should be applied by default; otherwise, <c>false</c>.
</value>
</member>
<member name="F:Caliburn.Micro.ViewModelBinder.ConventionsAppliedProperty">
<summary>
Indicates whether or not the conventions have already been applied to the view.
</summary>
</member>
<member name="M:Caliburn.Micro.ViewModelBinder.ShouldApplyConventions(System.Windows.FrameworkElement)">
<summary>
Determines whether a view should have conventions applied to it.
</summary>
<param name="view">The view to check.</param>
<returns>Whether or not conventions should be applied to the view.</returns>
</member>
<member name="F:Caliburn.Micro.ViewModelBinder.BindProperties">
<summary>
Creates data bindings on the view's controls based on the provided properties.
</summary>
<remarks>Parameters include named Elements to search through and the type of view model to determine conventions for. Returns unmatched elements.</remarks>
</member>
<member name="F:Caliburn.Micro.ViewModelBinder.BindActions">
<summary>
Attaches instances of <see cref="T:Caliburn.Micro.ActionMessage"/> to the view's controls based on the provided methods.
</summary>
<remarks>Parameters include the named elements to search through and the type of view model to determine conventions for. Returns unmatched elements.</remarks>
</member>
<member name="F:Caliburn.Micro.ViewModelBinder.HandleUnmatchedElements">
<summary>
Allows the developer to add custom handling of named elements which were not matched by any default conventions.
</summary>
</member>
<member name="F:Caliburn.Micro.ViewModelBinder.Bind">
<summary>
Binds the specified viewModel to the view.
</summary>
<remarks>Passes the the view model, view and creation context (or null for default) to use in applying binding.</remarks>
</member>
</members>
</doc>
|