GalaSoft.MvvmLight.xml
95.7 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>GalaSoft.MvvmLight</name>
</assembly>
<members>
<member name="T:GalaSoft.MvvmLight.Command.RelayCommand">
<summary>
A command whose sole purpose is to relay its functionality to other
objects by invoking delegates. The default return value for the CanExecute
method is 'true'. This class does not allow you to accept command parameters in the
Execute and CanExecute callback methods.
</summary>
<remarks>If you are using this class in WPF4.5 or above, you need to use the
GalaSoft.MvvmLight.CommandWpf namespace (instead of GalaSoft.MvvmLight.Command).
This will enable (or restore) the CommandManager class which handles
automatic enabling/disabling of controls based on the CanExecute delegate.</remarks>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand.#ctor(System.Action)">
<summary>
Initializes a new instance of the RelayCommand class that
can always execute.
</summary>
<param name="execute">The execution logic.</param>
<exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand.#ctor(System.Action,System.Func{System.Boolean})">
<summary>
Initializes a new instance of the RelayCommand class.
</summary>
<param name="execute">The execution logic.</param>
<param name="canExecute">The execution status logic.</param>
<exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand.RaiseCanExecuteChanged">
<summary>
Raises the <see cref="E:GalaSoft.MvvmLight.Command.RelayCommand.CanExecuteChanged"/> event.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand.CanExecute(System.Object)">
<summary>
Defines the method that determines whether the command can execute in its current state.
</summary>
<param name="parameter">This parameter will always be ignored.</param>
<returns>true if this command can be executed; otherwise, false.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand.Execute(System.Object)">
<summary>
Defines the method to be called when the command is invoked.
</summary>
<param name="parameter">This parameter will always be ignored.</param>
</member>
<member name="E:GalaSoft.MvvmLight.Command.RelayCommand.CanExecuteChanged">
<summary>
Occurs when changes occur that affect whether the command should execute.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Command.RelayCommand`1">
<summary>
A generic command whose sole purpose is to relay its functionality to other
objects by invoking delegates. The default return value for the CanExecute
method is 'true'. This class allows you to accept command parameters in the
Execute and CanExecute callback methods.
</summary>
<typeparam name="T">The type of the command parameter.</typeparam>
<remarks>If you are using this class in WPF4.5 or above, you need to use the
GalaSoft.MvvmLight.CommandWpf namespace (instead of GalaSoft.MvvmLight.Command).
This will enable (or restore) the CommandManager class which handles
automatic enabling/disabling of controls based on the CanExecute delegate.</remarks>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.#ctor(System.Action{`0})">
<summary>
Initializes a new instance of the RelayCommand class that
can always execute.
</summary>
<param name="execute">The execution logic.</param>
<exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.#ctor(System.Action{`0},System.Func{`0,System.Boolean})">
<summary>
Initializes a new instance of the RelayCommand class.
</summary>
<param name="execute">The execution logic.</param>
<param name="canExecute">The execution status logic.</param>
<exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.RaiseCanExecuteChanged">
<summary>
Raises the <see cref="E:GalaSoft.MvvmLight.Command.RelayCommand`1.CanExecuteChanged"/> event.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.CanExecute(System.Object)">
<summary>
Defines the method that determines whether the command can execute in its current state.
</summary>
<param name="parameter">Data used by the command. If the command does not require data
to be passed, this object can be set to a null reference</param>
<returns>true if this command can be executed; otherwise, false.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.Execute(System.Object)">
<summary>
Defines the method to be called when the command is invoked.
</summary>
<param name="parameter">Data used by the command. If the command does not require data
to be passed, this object can be set to a null reference</param>
</member>
<member name="E:GalaSoft.MvvmLight.Command.RelayCommand`1.CanExecuteChanged">
<summary>
Occurs when changes occur that affect whether the command should execute.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.DesignerLibrary">
<summary>
Helper class for platform detection.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.Empty">
<summary>
Helper class used when an async method is required,
but the context is synchronous.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.Empty.Task">
<summary>
Gets the empty task.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.FeatureDetection">
<summary>
Helper class for platform and feature detection.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.IExecuteWithObject">
<summary>
This interface is meant for the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction`1"/> class and can be
useful if you store multiple WeakAction{T} instances but don't know in advance
what type T represents.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.ExecuteWithObject(System.Object)">
<summary>
Executes an action.
</summary>
<param name="parameter">A parameter passed as an object,
to be casted to the appropriate type.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.MarkForDeletion">
<summary>
Deletes all references, which notifies the cleanup method
that this entry must be deleted.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.Target">
<summary>
The target of the WeakAction.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.IExecuteWithObjectAndResult">
<summary>
This interface is meant for the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakFunc`1"/> class and can be
useful if you store multiple WeakFunc{T} instances but don't know in advance
what type T represents.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObjectAndResult.ExecuteWithObject(System.Object)">
<summary>
Executes a Func and returns the result.
</summary>
<param name="parameter">A parameter passed as an object,
to be casted to the appropriate type.</param>
<returns>The result of the operation.</returns>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.WeakAction">
<summary>
Stores an <see cref="T:System.Action"/> without causing a hard reference
to be created to the Action's owner. The owner can be garbage collected at any time.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.#ctor">
<summary>
Initializes an empty instance of the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction"/> class.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.#ctor(System.Action)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction"/> class.
</summary>
<param name="action">The action that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.#ctor(System.Object,System.Action)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction"/> class.
</summary>
<param name="target">The action's owner.</param>
<param name="action">The action that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.Execute">
<summary>
Executes the action. This only happens if the action's owner
is still alive.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.MarkForDeletion">
<summary>
Sets the reference that this instance stores to null.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.Method">
<summary>
Gets or sets the <see cref="T:System.Reflection.MethodInfo"/> corresponding to this WeakAction's
method passed in the constructor.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.MethodName">
<summary>
Gets the name of the method that this WeakAction represents.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.ActionReference">
<summary>
Gets or sets a WeakReference to this WeakAction's action's target.
This is not necessarily the same as
<see cref="P:GalaSoft.MvvmLight.Helpers.WeakAction.Reference"/>, for example if the
method is anonymous.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.Reference">
<summary>
Gets or sets a WeakReference to the target passed when constructing
the WeakAction. This is not necessarily the same as
<see cref="P:GalaSoft.MvvmLight.Helpers.WeakAction.ActionReference"/>, for example if the
method is anonymous.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.IsStatic">
<summary>
Gets a value indicating whether the WeakAction is static or not.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.IsAlive">
<summary>
Gets a value indicating whether the Action's owner is still alive, or if it was collected
by the Garbage Collector already.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.Target">
<summary>
Gets the Action's owner. This object is stored as a
<see cref="T:System.WeakReference"/>.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.ActionTarget">
<summary>
The target of the weak reference.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.WeakAction`1">
<summary>
Stores an Action without causing a hard reference
to be created to the Action's owner. The owner can be garbage collected at any time.
</summary>
<typeparam name="T">The type of the Action's parameter.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.#ctor(System.Action{`0})">
<summary>
Initializes a new instance of the WeakAction class.
</summary>
<param name="action">The action that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.#ctor(System.Object,System.Action{`0})">
<summary>
Initializes a new instance of the WeakAction class.
</summary>
<param name="target">The action's owner.</param>
<param name="action">The action that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.Execute">
<summary>
Executes the action. This only happens if the action's owner
is still alive. The action's parameter is set to default(T).
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.Execute(`0)">
<summary>
Executes the action. This only happens if the action's owner
is still alive.
</summary>
<param name="parameter">A parameter to be passed to the action.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.ExecuteWithObject(System.Object)">
<summary>
Executes the action with a parameter of type object. This parameter
will be casted to T. This method implements <see cref="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.ExecuteWithObject(System.Object)"/>
and can be useful if you store multiple WeakAction{T} instances but don't know in advance
what type T represents.
</summary>
<param name="parameter">The parameter that will be passed to the action after
being casted to T.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.MarkForDeletion">
<summary>
Sets all the actions that this WeakAction contains to null,
which is a signal for containing objects that this WeakAction
should be deleted.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction`1.MethodName">
<summary>
Gets the name of the method that this WeakAction represents.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakAction`1.IsAlive">
<summary>
Gets a value indicating whether the Action's owner is still alive, or if it was collected
by the Garbage Collector already.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.WeakFunc`1">
<summary>
Stores a Func<T> without causing a hard reference
to be created to the Func's owner. The owner can be garbage collected at any time.
</summary>
<typeparam name="TResult">The type of the result of the Func that will be stored
by this weak reference.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.#ctor">
<summary>
Initializes an empty instance of the WeakFunc class.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.#ctor(System.Func{`0})">
<summary>
Initializes a new instance of the WeakFunc class.
</summary>
<param name="func">The Func that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.#ctor(System.Object,System.Func{`0})">
<summary>
Initializes a new instance of the WeakFunc class.
</summary>
<param name="target">The Func's owner.</param>
<param name="func">The Func that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Execute">
<summary>
Executes the action. This only happens if the Func's owner
is still alive.
</summary>
<returns>The result of the Func stored as reference.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.MarkForDeletion">
<summary>
Sets the reference that this instance stores to null.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Method">
<summary>
Gets or sets the <see cref="T:System.Reflection.MethodInfo"/> corresponding to this WeakFunc's
method passed in the constructor.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.IsStatic">
<summary>
Get a value indicating whether the WeakFunc is static or not.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.MethodName">
<summary>
Gets the name of the method that this WeakFunc represents.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.FuncReference">
<summary>
Gets or sets a WeakReference to this WeakFunc's action's target.
This is not necessarily the same as
<see cref="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Reference"/>, for example if the
method is anonymous.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Reference">
<summary>
Gets or sets a WeakReference to the target passed when constructing
the WeakFunc. This is not necessarily the same as
<see cref="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.FuncReference"/>, for example if the
method is anonymous.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.IsAlive">
<summary>
Gets a value indicating whether the Func's owner is still alive, or if it was collected
by the Garbage Collector already.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Target">
<summary>
Gets the Func's owner. This object is stored as a
<see cref="T:System.WeakReference"/>.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.FuncTarget">
<summary>
Gets the owner of the Func that was passed as parameter.
This is not necessarily the same as
<see cref="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Target"/>, for example if the
method is anonymous.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Helpers.WeakFunc`2">
<summary>
Stores an Func without causing a hard reference
to be created to the Func's owner. The owner can be garbage collected at any time.
</summary>
<typeparam name="T">The type of the Func's parameter.</typeparam>
<typeparam name="TResult">The type of the Func's return value.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.#ctor(System.Func{`0,`1})">
<summary>
Initializes a new instance of the WeakFunc class.
</summary>
<param name="func">The Func that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.#ctor(System.Object,System.Func{`0,`1})">
<summary>
Initializes a new instance of the WeakFunc class.
</summary>
<param name="target">The Func's owner.</param>
<param name="func">The Func that will be associated to this instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.Execute">
<summary>
Executes the Func. This only happens if the Func's owner
is still alive. The Func's parameter is set to default(T).
</summary>
<returns>The result of the Func stored as reference.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.Execute(`0)">
<summary>
Executes the Func. This only happens if the Func's owner
is still alive.
</summary>
<param name="parameter">A parameter to be passed to the action.</param>
<returns>The result of the Func stored as reference.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.ExecuteWithObject(System.Object)">
<summary>
Executes the Func with a parameter of type object. This parameter
will be casted to T. This method implements <see cref="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.ExecuteWithObject(System.Object)"/>
and can be useful if you store multiple WeakFunc{T} instances but don't know in advance
what type T represents.
</summary>
<param name="parameter">The parameter that will be passed to the Func after
being casted to T.</param>
<returns>The result of the execution as object, to be casted to T.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.MarkForDeletion">
<summary>
Sets all the funcs that this WeakFunc contains to null,
which is a signal for containing objects that this WeakFunc
should be deleted.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`2.MethodName">
<summary>
Gets or sets the name of the method that this WeakFunc represents.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`2.IsAlive">
<summary>
Gets a value indicating whether the Func's owner is still alive, or if it was collected
by the Garbage Collector already.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.ICleanup">
<summary>
Defines a common interface for classes that should be cleaned up,
but without the implications that IDisposable presupposes. An instance
implementing ICleanup can be cleaned up without being
disposed and garbage collected.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.ICleanup.Cleanup">
<summary>
Cleans up the instance, for example by saving its state,
removing resources, etc...
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.GenericMessage`1">
<summary>
Passes a generic value (Content) to a recipient.
</summary>
<typeparam name="T">The type of the Content property.</typeparam>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.MessageBase">
<summary>
Base class for all messages broadcasted by the Messenger.
You can create your own message types by extending this class.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.MessageBase.#ctor">
<summary>
Initializes a new instance of the MessageBase class.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.MessageBase.#ctor(System.Object)">
<summary>
Initializes a new instance of the MessageBase class.
</summary>
<param name="sender">The message's original sender.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.MessageBase.#ctor(System.Object,System.Object)">
<summary>
Initializes a new instance of the MessageBase class.
</summary>
<param name="sender">The message's original sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.MessageBase.Sender">
<summary>
Gets or sets the message's sender.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.MessageBase.Target">
<summary>
Gets or sets the message's intended target. This property can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.GenericMessage`1.#ctor(`0)">
<summary>
Initializes a new instance of the GenericMessage class.
</summary>
<param name="content">The message content.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.GenericMessage`1.#ctor(System.Object,`0)">
<summary>
Initializes a new instance of the GenericMessage class.
</summary>
<param name="sender">The message's sender.</param>
<param name="content">The message content.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.GenericMessage`1.#ctor(System.Object,System.Object,`0)">
<summary>
Initializes a new instance of the GenericMessage class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="content">The message content.</param>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.GenericMessage`1.Content">
<summary>
Gets or sets the message's content.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.IMessenger">
<summary>
The Messenger is a class allowing objects to exchange messages.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage. The action
parameter will be executed when a corresponding message is sent.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Object,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage.
The action parameter will be executed when a corresponding
message is sent. See the receiveDerivedMessagesToo parameter
for details on how messages deriving from TMessage (or, if TMessage is an interface,
messages implementing TMessage) can be received too.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="token">A token for a messaging channel. If a recipient registers
using a token, and a sender sends a message using the same token, then this
message will be delivered to the recipient. Other recipients who did not
use a token when registering (or who used a different token) will not
get the message. Similarly, messages sent without any token, or with a different
token, will not be delivered to that recipient.</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Object,System.Boolean,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage.
The action parameter will be executed when a corresponding
message is sent. See the receiveDerivedMessagesToo parameter
for details on how messages deriving from TMessage (or, if TMessage is an interface,
messages implementing TMessage) can be received too.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="token">A token for a messaging channel. If a recipient registers
using a token, and a sender sends a message using the same token, then this
message will be delivered to the recipient. Other recipients who did not
use a token when registering (or who used a different token) will not
get the message. Similarly, messages sent without any token, or with a different
token, will not be delivered to that recipient.</param>
<param name="receiveDerivedMessagesToo">If true, message types deriving from
TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.
<para>Also, if TMessage is an interface, message types implementing TMessage will also be
transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.</para>
</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Boolean,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage.
The action parameter will be executed when a corresponding
message is sent. See the receiveDerivedMessagesToo parameter
for details on how messages deriving from TMessage (or, if TMessage is an interface,
messages implementing TMessage) can be received too.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="receiveDerivedMessagesToo">If true, message types deriving from
TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.
<para>Also, if TMessage is an interface, message types implementing TMessage will also be
transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.</para>
</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Send``1(``0)">
<summary>
Sends a message to registered recipients. The message will
reach all recipients that registered for this message type
using one of the Register methods.
</summary>
<typeparam name="TMessage">The type of message that will be sent.</typeparam>
<param name="message">The message to send to registered recipients.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Send``2(``0)">
<summary>
Sends a message to registered recipients. The message will
reach only recipients that registered for this message type
using one of the Register methods, and that are
of the targetType.
</summary>
<typeparam name="TMessage">The type of message that will be sent.</typeparam>
<typeparam name="TTarget">The type of recipients that will receive
the message. The message won't be sent to recipients of another type.</typeparam>
<param name="message">The message to send to registered recipients.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Send``1(``0,System.Object)">
<summary>
Sends a message to registered recipients. The message will
reach only recipients that registered for this message type
using one of the Register methods, and that are
of the targetType.
</summary>
<typeparam name="TMessage">The type of message that will be sent.</typeparam>
<param name="message">The message to send to registered recipients.</param>
<param name="token">A token for a messaging channel. If a recipient registers
using a token, and a sender sends a message using the same token, then this
message will be delivered to the recipient. Other recipients who did not
use a token when registering (or who used a different token) will not
get the message. Similarly, messages sent without any token, or with a different
token, will not be delivered to that recipient.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister(System.Object)">
<summary>
Unregisters a messager recipient completely. After this method
is executed, the recipient will not receive any messages anymore.
</summary>
<param name="recipient">The recipient that must be unregistered.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object)">
<summary>
Unregisters a message recipient for a given type of messages only.
After this method is executed, the recipient will not receive messages
of type TMessage anymore, but will still receive other message types (if it
registered for them previously).
</summary>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
<param name="recipient">The recipient that must be unregistered.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object,System.Object)">
<summary>
Unregisters a message recipient for a given type of messages only and for a given token.
After this method is executed, the recipient will not receive messages
of type TMessage anymore with the given token, but will still receive other message types
or messages with other tokens (if it registered for them previously).
</summary>
<param name="recipient">The recipient that must be unregistered.</param>
<param name="token">The token for which the recipient must be unregistered.</param>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object,System.Action{``0})">
<summary>
Unregisters a message recipient for a given type of messages and for
a given action. Other message types will still be transmitted to the
recipient (if it registered for them previously). Other actions that have
been registered for the message type TMessage and for the given recipient (if
available) will also remain available.
</summary>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
<param name="recipient">The recipient that must be unregistered.</param>
<param name="action">The action that must be unregistered for
the recipient and for the message type TMessage.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object,System.Object,System.Action{``0})">
<summary>
Unregisters a message recipient for a given type of messages, for
a given action and a given token. Other message types will still be transmitted to the
recipient (if it registered for them previously). Other actions that have
been registered for the message type TMessage, for the given recipient and other tokens (if
available) will also remain available.
</summary>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
<param name="recipient">The recipient that must be unregistered.</param>
<param name="token">The token for which the recipient must be unregistered.</param>
<param name="action">The action that must be unregistered for
the recipient and for the message type TMessage.</param>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.Messenger">
<summary>
The Messenger is a class allowing objects to exchange messages.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage. The action
parameter will be executed when a corresponding message is sent.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Boolean,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage.
The action parameter will be executed when a corresponding
message is sent. See the receiveDerivedMessagesToo parameter
for details on how messages deriving from TMessage (or, if TMessage is an interface,
messages implementing TMessage) can be received too.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="receiveDerivedMessagesToo">If true, message types deriving from
TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.
<para>Also, if TMessage is an interface, message types implementing TMessage will also be
transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.</para>
</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Object,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage.
The action parameter will be executed when a corresponding
message is sent.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="token">A token for a messaging channel. If a recipient registers
using a token, and a sender sends a message using the same token, then this
message will be delivered to the recipient. Other recipients who did not
use a token when registering (or who used a different token) will not
get the message. Similarly, messages sent without any token, or with a different
token, will not be delivered to that recipient.</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Object,System.Boolean,System.Action{``0})">
<summary>
Registers a recipient for a type of message TMessage.
The action parameter will be executed when a corresponding
message is sent. See the receiveDerivedMessagesToo parameter
for details on how messages deriving from TMessage (or, if TMessage is an interface,
messages implementing TMessage) can be received too.
<para>Registering a recipient does not create a hard reference to it,
so if this recipient is deleted, no memory leak is caused.</para>
</summary>
<typeparam name="TMessage">The type of message that the recipient registers
for.</typeparam>
<param name="recipient">The recipient that will receive the messages.</param>
<param name="token">A token for a messaging channel. If a recipient registers
using a token, and a sender sends a message using the same token, then this
message will be delivered to the recipient. Other recipients who did not
use a token when registering (or who used a different token) will not
get the message. Similarly, messages sent without any token, or with a different
token, will not be delivered to that recipient.</param>
<param name="receiveDerivedMessagesToo">If true, message types deriving from
TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.
<para>Also, if TMessage is an interface, message types implementing TMessage will also be
transmitted to the recipient. For example, if a SendOrderMessage
and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
and setting receiveDerivedMessagesToo to true will send SendOrderMessage
and ExecuteOrderMessage to the recipient that registered.</para>
</param>
<param name="action">The action that will be executed when a message
of type TMessage is sent.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Send``1(``0)">
<summary>
Sends a message to registered recipients. The message will
reach all recipients that registered for this message type
using one of the Register methods.
</summary>
<typeparam name="TMessage">The type of message that will be sent.</typeparam>
<param name="message">The message to send to registered recipients.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Send``2(``0)">
<summary>
Sends a message to registered recipients. The message will
reach only recipients that registered for this message type
using one of the Register methods, and that are
of the targetType.
</summary>
<typeparam name="TMessage">The type of message that will be sent.</typeparam>
<typeparam name="TTarget">The type of recipients that will receive
the message. The message won't be sent to recipients of another type.</typeparam>
<param name="message">The message to send to registered recipients.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Send``1(``0,System.Object)">
<summary>
Sends a message to registered recipients. The message will
reach only recipients that registered for this message type
using one of the Register methods, and that are
of the targetType.
</summary>
<typeparam name="TMessage">The type of message that will be sent.</typeparam>
<param name="message">The message to send to registered recipients.</param>
<param name="token">A token for a messaging channel. If a recipient registers
using a token, and a sender sends a message using the same token, then this
message will be delivered to the recipient. Other recipients who did not
use a token when registering (or who used a different token) will not
get the message. Similarly, messages sent without any token, or with a different
token, will not be delivered to that recipient.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister(System.Object)">
<summary>
Unregisters a messager recipient completely. After this method
is executed, the recipient will not receive any messages anymore.
</summary>
<param name="recipient">The recipient that must be unregistered.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object)">
<summary>
Unregisters a message recipient for a given type of messages only.
After this method is executed, the recipient will not receive messages
of type TMessage anymore, but will still receive other message types (if it
registered for them previously).
</summary>
<param name="recipient">The recipient that must be unregistered.</param>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object,System.Object)">
<summary>
Unregisters a message recipient for a given type of messages only and for a given token.
After this method is executed, the recipient will not receive messages
of type TMessage anymore with the given token, but will still receive other message types
or messages with other tokens (if it registered for them previously).
</summary>
<param name="recipient">The recipient that must be unregistered.</param>
<param name="token">The token for which the recipient must be unregistered.</param>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object,System.Action{``0})">
<summary>
Unregisters a message recipient for a given type of messages and for
a given action. Other message types will still be transmitted to the
recipient (if it registered for them previously). Other actions that have
been registered for the message type TMessage and for the given recipient (if
available) will also remain available.
</summary>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
<param name="recipient">The recipient that must be unregistered.</param>
<param name="action">The action that must be unregistered for
the recipient and for the message type TMessage.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object,System.Object,System.Action{``0})">
<summary>
Unregisters a message recipient for a given type of messages, for
a given action and a given token. Other message types will still be transmitted to the
recipient (if it registered for them previously). Other actions that have
been registered for the message type TMessage, for the given recipient and other tokens (if
available) will also remain available.
</summary>
<typeparam name="TMessage">The type of messages that the recipient wants
to unregister from.</typeparam>
<param name="recipient">The recipient that must be unregistered.</param>
<param name="token">The token for which the recipient must be unregistered.</param>
<param name="action">The action that must be unregistered for
the recipient and for the message type TMessage.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.OverrideDefault(GalaSoft.MvvmLight.Messaging.IMessenger)">
<summary>
Provides a way to override the Messenger.Default instance with
a custom instance, for example for unit testing purposes.
</summary>
<param name="newMessenger">The instance that will be used as Messenger.Default.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Reset">
<summary>
Sets the Messenger's default (static) instance to null.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.ResetAll">
<summary>
Provides a non-static access to the static <see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.Reset"/> method.
Sets the Messenger's default (static) instance to null.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.RequestCleanup">
<summary>
Notifies the Messenger that the lists of recipients should
be scanned and cleaned up.
Since recipients are stored as <see cref="T:System.WeakReference"/>,
recipients can be garbage collected even though the Messenger keeps
them in a list. During the cleanup operation, all "dead"
recipients are removed from the lists. Since this operation
can take a moment, it is only executed when the application is
idle. For this reason, a user of the Messenger class should use
<see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.RequestCleanup"/> instead of forcing one with the
<see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.Cleanup"/> method.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Cleanup">
<summary>
Scans the recipients' lists for "dead" instances and removes them.
Since recipients are stored as <see cref="T:System.WeakReference"/>,
recipients can be garbage collected even though the Messenger keeps
them in a list. During the cleanup operation, all "dead"
recipients are removed from the lists. Since this operation
can take a moment, it is only executed when the application is
idle. For this reason, a user of the Messenger class should use
<see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.RequestCleanup"/> instead of forcing one with the
<see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.Cleanup"/> method.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.Messenger.Default">
<summary>
Gets the Messenger's default instance, allowing
to register and send messages in a static manner.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessage">
<summary>
Passes a string message (Notification) to a recipient.
<para>Typically, notifications are defined as unique strings in a static class. To define
a unique string, you can use Guid.NewGuid().ToString() or any other unique
identifier.</para>
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage.#ctor(System.String)">
<summary>
Initializes a new instance of the NotificationMessage class.
</summary>
<param name="notification">A string containing any arbitrary message to be
passed to recipient(s)</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage.#ctor(System.Object,System.String)">
<summary>
Initializes a new instance of the NotificationMessage class.
</summary>
<param name="sender">The message's sender.</param>
<param name="notification">A string containing any arbitrary message to be
passed to recipient(s)</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage.#ctor(System.Object,System.Object,System.String)">
<summary>
Initializes a new instance of the NotificationMessage class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="notification">A string containing any arbitrary message to be
passed to recipient(s)</param>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.NotificationMessage.Notification">
<summary>
Gets a string containing any arbitrary message to be
passed to recipient(s).
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction">
<summary>
Provides a message class with a built-in callback. When the recipient
is done processing the message, it can execute the callback to
notify the sender that it is done. Use the <see cref="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.Execute"/>
method to execute the callback.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback">
<summary>
Provides a message class with a built-in callback. When the recipient
is done processing the message, it can execute the callback to
notify the sender that it is done. Use the <see cref="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.Execute(System.Object[])"/>
method to execute the callback. The callback method has one parameter.
<seealso cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> and
<seealso cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/>.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.#ctor(System.String,System.Delegate)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback"/> class.
</summary>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.#ctor(System.Object,System.String,System.Delegate)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.#ctor(System.Object,System.Object,System.String,System.Delegate)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.Execute(System.Object[])">
<summary>
Executes the callback that was provided with the message with an
arbitrary number of parameters.
</summary>
<param name="arguments">A number of parameters that will
be passed to the callback method.</param>
<returns>The object returned by the callback method.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.#ctor(System.String,System.Action)">
<summary>
Initializes a new instance of the
<see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> class.
</summary>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.#ctor(System.Object,System.String,System.Action)">
<summary>
Initializes a new instance of the
<see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.#ctor(System.Object,System.Object,System.String,System.Action)">
<summary>
Initializes a new instance of the
<see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.Execute">
<summary>
Executes the callback that was provided with the message.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1">
<summary>
Provides a message class with a built-in callback. When the recipient
is done processing the message, it can execute the callback to
notify the sender that it is done. Use the <see cref="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.Execute(`0)"/>
method to execute the callback. The callback method has one parameter.
<seealso cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/>.
</summary>
<typeparam name="TCallbackParameter">The type of the callback method's
only parameter.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.#ctor(System.String,System.Action{`0})">
<summary>
Initializes a new instance of the
<see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/> class.
</summary>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.#ctor(System.Object,System.String,System.Action{`0})">
<summary>
Initializes a new instance of the
<see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.#ctor(System.Object,System.Object,System.String,System.Action{`0})">
<summary>
Initializes a new instance of the
<see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="notification">An arbitrary string that will be
carried by the message.</param>
<param name="callback">The callback method that can be executed
by the recipient to notify the sender that the message has been
processed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.Execute(`0)">
<summary>
Executes the callback that was provided with the message.
</summary>
<param name="parameter">A parameter requested by the message's
sender and providing additional information on the recipient's
state.</param>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessage`1">
<summary>
Passes a string message (Notification) and a generic value (Content) to a recipient.
</summary>
<typeparam name="T">The type of the Content property.</typeparam>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.#ctor(`0,System.String)">
<summary>
Initializes a new instance of the NotificationMessage class.
</summary>
<param name="content">A value to be passed to recipient(s).</param>
<param name="notification">A string containing any arbitrary message to be
passed to recipient(s)</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.#ctor(System.Object,`0,System.String)">
<summary>
Initializes a new instance of the NotificationMessage class.
</summary>
<param name="sender">The message's sender.</param>
<param name="content">A value to be passed to recipient(s).</param>
<param name="notification">A string containing any arbitrary message to be
passed to recipient(s)</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.#ctor(System.Object,System.Object,`0,System.String)">
<summary>
Initializes a new instance of the NotificationMessage class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="content">A value to be passed to recipient(s).</param>
<param name="notification">A string containing any arbitrary message to be
passed to recipient(s)</param>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.Notification">
<summary>
Gets a string containing any arbitrary message to be
passed to recipient(s).
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1">
<summary>
Passes a string property name (PropertyName) and a generic value
(<see cref="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.OldValue"/> and <see cref="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.NewValue"/>) to a recipient.
This message type can be used to propagate a PropertyChanged event to
a recipient using the messenging system.
</summary>
<typeparam name="T">The type of the OldValue and NewValue property.</typeparam>
</member>
<member name="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase">
<summary>
Basis class for the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class. This
class allows a recipient to register for all PropertyChangedMessages without
having to specify the type T.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.#ctor(System.Object,System.String)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="propertyName">The name of the property that changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.#ctor(System.Object,System.Object,System.String)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="propertyName">The name of the property that changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase"/> class.
</summary>
<param name="propertyName">The name of the property that changed.</param>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.PropertyName">
<summary>
Gets or sets the name of the property that changed.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.#ctor(System.Object,`0,`0,System.String)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="oldValue">The property's value before the change occurred.</param>
<param name="newValue">The property's value after the change occurred.</param>
<param name="propertyName">The name of the property that changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.#ctor(`0,`0,System.String)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class.
</summary>
<param name="oldValue">The property's value before the change occurred.</param>
<param name="newValue">The property's value after the change occurred.</param>
<param name="propertyName">The name of the property that changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.#ctor(System.Object,System.Object,`0,`0,System.String)">
<summary>
Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class.
</summary>
<param name="sender">The message's sender.</param>
<param name="target">The message's intended target. This parameter can be used
to give an indication as to whom the message was intended for. Of course
this is only an indication, amd may be null.</param>
<param name="oldValue">The property's value before the change occurred.</param>
<param name="newValue">The property's value after the change occurred.</param>
<param name="propertyName">The name of the property that changed.</param>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.NewValue">
<summary>
Gets the value that the property has after the change.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.OldValue">
<summary>
Gets the value that the property had before the change.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.ObservableObject">
<summary>
A base class for objects of which the properties must be observable.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.VerifyPropertyName(System.String)">
<summary>
Verifies that a property name exists in this ViewModel. This method
can be called before the property is used, for instance before
calling RaisePropertyChanged. It avoids errors when a property name
is changed but some places are missed.
</summary>
<remarks>This method is only active in DEBUG mode.</remarks>
<param name="propertyName">The name of the property that will be
checked.</param>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.RaisePropertyChanged(System.String)">
<summary>
Raises the PropertyChanged event if needed.
</summary>
<remarks>If the propertyName parameter
does not correspond to an existing property on the current class, an
exception is thrown in DEBUG configuration only.</remarks>
<param name="propertyName">(optional) The name of the property that
changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.RaisePropertyChanged``1(System.Linq.Expressions.Expression{System.Func{``0}})">
<summary>
Raises the PropertyChanged event if needed.
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyExpression">An expression identifying the property
that changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.GetPropertyName``1(System.Linq.Expressions.Expression{System.Func{``0}})">
<summary>
Extracts the name of a property from an expression.
</summary>
<typeparam name="T">The type of the property.</typeparam>
<param name="propertyExpression">An expression returning the property's name.</param>
<returns>The name of the property returned by the expression.</returns>
<exception cref="T:System.ArgumentNullException">If the expression is null.</exception>
<exception cref="T:System.ArgumentException">If the expression does not represent a property.</exception>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.Set``1(System.Linq.Expressions.Expression{System.Func{``0}},``0@,``0)">
<summary>
Assigns a new value to the property. Then, raises the
PropertyChanged event if needed.
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyExpression">An expression identifying the property
that changed.</param>
<param name="field">The field storing the property's value.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<returns>True if the PropertyChanged event has been raised,
false otherwise. The event is not raised if the old
value is equal to the new value.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.Set``1(System.String,``0@,``0)">
<summary>
Assigns a new value to the property. Then, raises the
PropertyChanged event if needed.
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyName">The name of the property that
changed.</param>
<param name="field">The field storing the property's value.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<returns>True if the PropertyChanged event has been raised,
false otherwise. The event is not raised if the old
value is equal to the new value.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.ObservableObject.Set``1(``0@,``0,System.String)">
<summary>
Assigns a new value to the property. Then, raises the
PropertyChanged event if needed.
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="field">The field storing the property's value.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<param name="propertyName">(optional) The name of the property that
changed.</param>
<returns>True if the PropertyChanged event has been raised,
false otherwise. The event is not raised if the old
value is equal to the new value.</returns>
</member>
<member name="E:GalaSoft.MvvmLight.ObservableObject.PropertyChanged">
<summary>
Occurs after a property value changes.
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.ObservableObject.PropertyChangedHandler">
<summary>
Provides access to the PropertyChanged event handler to derived classes.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.ViewModelBase">
<summary>
A base class for the ViewModel classes in the MVVM pattern.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.#ctor">
<summary>
Initializes a new instance of the ViewModelBase class.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.#ctor(GalaSoft.MvvmLight.Messaging.IMessenger)">
<summary>
Initializes a new instance of the ViewModelBase class.
</summary>
<param name="messenger">An instance of a <see cref="T:GalaSoft.MvvmLight.Messaging.Messenger"/>
used to broadcast messages to other objects. If null, this class
will attempt to broadcast using the Messenger's default
instance.</param>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.Cleanup">
<summary>
Unregisters this instance from the Messenger class.
<para>To cleanup additional resources, override this method, clean
up and then call base.Cleanup().</para>
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.Broadcast``1(``0,``0,System.String)">
<summary>
Broadcasts a PropertyChangedMessage using either the instance of
the Messenger that was passed to this class (if available)
or the Messenger's default instance.
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="oldValue">The value of the property before it
changed.</param>
<param name="newValue">The value of the property after it
changed.</param>
<param name="propertyName">The name of the property that
changed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.RaisePropertyChanged``1(System.String,``0,``0,System.Boolean)">
<summary>
Raises the PropertyChanged event if needed, and broadcasts a
PropertyChangedMessage using the Messenger instance (or the
static default instance if no Messenger instance is available).
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyName">The name of the property that
changed.</param>
<param name="oldValue">The property's value before the change
occurred.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<param name="broadcast">If true, a PropertyChangedMessage will
be broadcasted. If false, only the event will be raised.</param>
<remarks>If the propertyName parameter
does not correspond to an existing property on the current class, an
exception is thrown in DEBUG configuration only.</remarks>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.RaisePropertyChanged``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,System.Boolean)">
<summary>
Raises the PropertyChanged event if needed, and broadcasts a
PropertyChangedMessage using the Messenger instance (or the
static default instance if no Messenger instance is available).
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyExpression">An expression identifying the property
that changed.</param>
<param name="oldValue">The property's value before the change
occurred.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<param name="broadcast">If true, a PropertyChangedMessage will
be broadcasted. If false, only the event will be raised.</param>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.Set``1(System.Linq.Expressions.Expression{System.Func{``0}},``0@,``0,System.Boolean)">
<summary>
Assigns a new value to the property. Then, raises the
PropertyChanged event if needed, and broadcasts a
PropertyChangedMessage using the Messenger instance (or the
static default instance if no Messenger instance is available).
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyExpression">An expression identifying the property
that changed.</param>
<param name="field">The field storing the property's value.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<param name="broadcast">If true, a PropertyChangedMessage will
be broadcasted. If false, only the event will be raised.</param>
<returns>True if the PropertyChanged event was raised, false otherwise.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.Set``1(System.String,``0@,``0,System.Boolean)">
<summary>
Assigns a new value to the property. Then, raises the
PropertyChanged event if needed, and broadcasts a
PropertyChangedMessage using the Messenger instance (or the
static default instance if no Messenger instance is available).
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="propertyName">The name of the property that
changed.</param>
<param name="field">The field storing the property's value.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<param name="broadcast">If true, a PropertyChangedMessage will
be broadcasted. If false, only the event will be raised.</param>
<returns>True if the PropertyChanged event was raised, false otherwise.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.ViewModelBase.Set``1(``0@,``0,System.Boolean,System.String)">
<summary>
Assigns a new value to the property. Then, raises the
PropertyChanged event if needed, and broadcasts a
PropertyChangedMessage using the Messenger instance (or the
static default instance if no Messenger instance is available).
</summary>
<typeparam name="T">The type of the property that
changed.</typeparam>
<param name="field">The field storing the property's value.</param>
<param name="newValue">The property's value after the change
occurred.</param>
<param name="broadcast">If true, a PropertyChangedMessage will
be broadcasted. If false, only the event will be raised.</param>
<param name="propertyName">(optional) The name of the property that
changed.</param>
<returns>True if the PropertyChanged event was raised, false otherwise.</returns>
</member>
<member name="P:GalaSoft.MvvmLight.ViewModelBase.IsInDesignMode">
<summary>
Gets a value indicating whether the control is in design mode
(running under Blend or Visual Studio).
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.ViewModelBase.IsInDesignModeStatic">
<summary>
Gets a value indicating whether the control is in design mode
(running in Blend or Visual Studio).
</summary>
</member>
<member name="P:GalaSoft.MvvmLight.ViewModelBase.MessengerInstance">
<summary>
Gets or sets an instance of a <see cref="T:GalaSoft.MvvmLight.Messaging.IMessenger"/> used to
broadcast messages to other objects. If null, this class will
attempt to broadcast using the Messenger's default instance.
</summary>
</member>
<member name="T:GalaSoft.MvvmLight.Views.IDialogService">
<summary>
An interface defining how dialogs should
be displayed in various frameworks such as Windows,
Windows Phone, Android, iOS etc.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Views.IDialogService.ShowError(System.String,System.String,System.String,System.Action)">
<summary>
Displays information about an error.
</summary>
<param name="message">The message to be shown to the user.</param>
<param name="title">The title of the dialog box. This may be null.</param>
<param name="buttonText">The text shown in the only button
in the dialog box. If left null, the text "OK" will be used.</param>
<param name="afterHideCallback">A callback that should be executed after
the dialog box is closed by the user.</param>
<returns>A Task allowing this async method to be awaited.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Views.IDialogService.ShowError(System.Exception,System.String,System.String,System.Action)">
<summary>
Displays information about an error.
</summary>
<param name="error">The exception of which the message must be shown to the user.</param>
<param name="title">The title of the dialog box. This may be null.</param>
<param name="buttonText">The text shown in the only button
in the dialog box. If left null, the text "OK" will be used.</param>
<param name="afterHideCallback">A callback that should be executed after
the dialog box is closed by the user.</param>
<returns>A Task allowing this async method to be awaited.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Views.IDialogService.ShowMessage(System.String,System.String)">
<summary>
Displays information to the user. The dialog box will have only
one button with the text "OK".
</summary>
<param name="message">The message to be shown to the user.</param>
<param name="title">The title of the dialog box. This may be null.</param>
<returns>A Task allowing this async method to be awaited.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Views.IDialogService.ShowMessage(System.String,System.String,System.String,System.Action)">
<summary>
Displays information to the user. The dialog box will have only
one button.
</summary>
<param name="message">The message to be shown to the user.</param>
<param name="title">The title of the dialog box. This may be null.</param>
<param name="buttonText">The text shown in the only button
in the dialog box. If left null, the text "OK" will be used.</param>
<param name="afterHideCallback">A callback that should be executed after
the dialog box is closed by the user.</param>
<returns>A Task allowing this async method to be awaited.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Views.IDialogService.ShowMessage(System.String,System.String,System.String,System.String,System.Action{System.Boolean})">
<summary>
Displays information to the user. The dialog box will have only
one button.
</summary>
<param name="message">The message to be shown to the user.</param>
<param name="title">The title of the dialog box. This may be null.</param>
<param name="buttonConfirmText">The text shown in the "confirm" button
in the dialog box. If left null, the text "OK" will be used.</param>
<param name="buttonCancelText">The text shown in the "cancel" button
in the dialog box. If left null, the text "Cancel" will be used.</param>
<param name="afterHideCallback">A callback that should be executed after
the dialog box is closed by the user. The callback method will get a boolean
parameter indicating if the "confirm" button (true) or the "cancel" button
(false) was pressed by the user.</param>
<returns>A Task allowing this async method to be awaited. The task will return
true or false depending on the dialog result.</returns>
</member>
<member name="M:GalaSoft.MvvmLight.Views.IDialogService.ShowMessageBox(System.String,System.String)">
<summary>
Displays information to the user in a simple dialog box. The dialog box will have only
one button with the text "OK". This method should be used for debugging purposes.
</summary>
<param name="message">The message to be shown to the user.</param>
<param name="title">The title of the dialog box. This may be null.</param>
<returns>A Task allowing this async method to be awaited.</returns>
</member>
<member name="T:GalaSoft.MvvmLight.Views.INavigationService">
<summary>
An interface defining how navigation between pages should
be performed in various frameworks such as Windows,
Windows Phone, Android, iOS etc.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Views.INavigationService.GoBack">
<summary>
If possible, instructs the navigation service
to discard the current page and display the previous page
on the navigation stack.
</summary>
</member>
<member name="M:GalaSoft.MvvmLight.Views.INavigationService.NavigateTo(System.String)">
<summary>
Instructs the navigation service to display a new page
corresponding to the given key. Depending on the platforms,
the navigation service might have to be configured with a
key/page list.
</summary>
<param name="pageKey">The key corresponding to the page
that should be displayed.</param>
</member>
<member name="M:GalaSoft.MvvmLight.Views.INavigationService.NavigateTo(System.String,System.Object)">
<summary>
Instructs the navigation service to display a new page
corresponding to the given key, and passes a parameter
to the new page.
Depending on the platforms, the navigation service might
have to be Configure with a key/page list.
</summary>
<param name="pageKey">The key corresponding to the page
that should be displayed.</param>
<param name="parameter">The parameter that should be passed
to the new page.</param>
</member>
<member name="P:GalaSoft.MvvmLight.Views.INavigationService.CurrentPageKey">
<summary>
The key corresponding to the currently displayed page.
</summary>
</member>
</members>
</doc>