Subversion Repository Public Repository

Nextrek

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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Facebook.Client</name>
    </assembly>
    <members>
        <member name="F:Facebook.Client.AppAuthenticationHelper.AccessTokenKey">
            <summary>
                Defines the key for access token in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.ErrorCodeKey">
            <summary>
                Defines the key for error code in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.ErrorDescriptionKey">
            <summary>
                Defines the key for error description in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.ErrorKey">
            <summary>
                Defines the key for error in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.ErrorReasonKey">
            <summary>
                Defines the key for error reason in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.ExpiresInKey">
            <summary>
                Defines the key for expires_in in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.StateKey">
            <summary>
                Defines the key for state in the query string representation
            </summary>
        </member>
        <member name="F:Facebook.Client.AppAuthenticationHelper.FacebookConnectUriTemplate">
            <summary>
            Defines the Facebook Login URI template.
            </summary>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.IsFacebookLoginResponse(System.Uri)">
            <summary>
            Determines whether the specified uri is a facebook login response uri
            </summary>
            <param name="uri">The uri to check</param>
            <returns>
              <c>true</c> if the specified uri is a Facebook login uri
            </returns>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.ParseQueryString(Facebook.Client.AccessTokenData,System.String)">
            <summary>
            Initializes a new instance of the AccessTokenData class from a query string with key/value pairs
            </summary>
            <param name="queryString">
            Query to parse
            </param>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.GetFacebookLoginCallbackSchemeName">
            <summary>
            Gets the scheme name registered by the calling app for facebook login
            </summary>
            <returns>The deep link scheme name for facebook login</returns>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.GetFilteredManifestAppAttributeValue(System.String,System.String,System.String)">
            <summary>
            Gets an attribute from the manifest App node, checking for a prefix value
            </summary>
            <param name="node">
            Node name to search under
            </param>
            <param name="attribute">
            Attribute name to search for
            </param>
            <param name="prefix">
            Prefix that the value must start with
            </param>
            <returns>
            Attribute value, or empty string if no match found
            </returns>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.AuthenticateWithApp(System.String,System.String)">
            <summary>
            Authenticates via app to app communication with the Facebook app
            </summary>
            <param name="appId">The application id for which the user needs to be authenticated.</param>
            <param name="permissions">List of permissions that are being requested.</param>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.AuthenticateWithApp(System.String,System.String,System.String)">
            <summary>
            Authenticates via app to app communication with the Facebook app
            </summary>
            <param name="appId">The application id for which the user needs to be authenticated.</param>
            <param name="permissions">List of permissions that are being requested.</param>
            <param name="state">The state, this will be passed back in the response</param>
        </member>
        <member name="M:Facebook.Client.AppAuthenticationHelper.GetQueryStringValueFromUri(System.String,System.String)">
            <summary>
            Gets a query string value from a full URI
            </summary>
            <param name="uri">
            URI to parse
            </param>
            <param name="key">
            QueryString key
            </param>
            <returns>
            QueryString value
            </returns>
        </member>
        <member name="T:Facebook.Client.Controls.BooleanToVisibilityConverter">
            <summary>
            Translates boolean values to Visibility constants.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.BooleanToVisibilityConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Converts a boolean value to a Visibility constant.
            </summary>
            <param name="value">The source data being passed to the target.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">Unused.</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>A Visibility constant.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.BooleanToVisibilityConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.BooleanToVisibilityConverter.IsReversed">
            <summary>
            Set to true to convert true to Collapsed and false to Visible.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.ColorLuminosityConverter">
            <summary>
            Adjusts the color of a brush changing its luminosity by a given factor.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.ColorLuminosityConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Converts the color of the supplied brush changing its luminosity by the given factor.
            </summary>
            <param name="value">The value that is produced by the binding target.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">The factor used to adjust the luminosity (0..1).</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>A converted value.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.ColorLuminosityConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.HlsColor">
            <summary>
            Describes a color in terms of hue, lightness, and saturation (HLS).
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.HlsColor.FromRgb(Windows.UI.Color)">
            <summary>
            Converts a color described in terms of alpha, red, green and blue channels (RGB) to 
            its equivalent HLS Color.
            </summary>
            <param name="rgbColor">The RGB color to convert.</param>
            <returns>An equivalent HLS Color.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.HlsColor.ToRgb">
            <summary>
            Returns an equivalent color described in terms of alpha, red, green and blue channels (RGB).
            </summary>
            <returns>An equivalent Color (RGB).</returns>
        </member>
        <member name="T:Facebook.Client.Controls.IsNullOrEmptyConverter">
            <summary>
            Checks if a value is null or empty.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.IsNullOrEmptyConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Checks if a value is null or empty.
            </summary>
            <param name="value">The value that is produced by the binding target.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">Set to True to indicate that the return value should be negated.</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>True if the value is null or empty.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.IsNullOrEmptyConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.ParameterizedConverter">
            <summary>
            Wraps a value converter allowing the converter parameters to be bound.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.ParameterizedConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Delegates to a wrapped value converter providing it with the bound converter parameter.
            </summary>
            <param name="value">The source data being passed to the target.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">Unused.</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>The value returned by the wrapped value converter.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.ParameterizedConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.ParameterizedConverter.ConverterProperty">
            <summary>
            Identifies the Converter dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.ParameterizedConverter.ConverterParameterProperty">
            <summary>
            Identifies the ConverterParameter dependency property.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.ParameterizedConverter.Converter">
            <summary>
            Gets or sets the converter to delegate to.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.ParameterizedConverter.ConverterParameter">
            <summary>
            Gets or sets the parameter to pass through to the inner value converter.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.ScaleConverter">
            <summary>
            Scales a value by a given factor.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.ScaleConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Scales the value by a given factor.
            </summary>
            <param name="value">The value that is produced by the binding target.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">The factor used to scale the value.</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>A converted value.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.ScaleConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.DataItemRetrievedEventArgs`1">
            <summary>
            Provides data for the DataItemRetrieved event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.DataItemRetrievedEventArgs`1.#ctor(`0)">
            <summary>
            Initializes a new instance of the DataItemRetrievedEventArgs class.
            </summary>
            <param name="item">The item retrieved.</param>
        </member>
        <member name="P:Facebook.Client.Controls.DataItemRetrievedEventArgs`1.Item">
            <summary>
            The item retrieved.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.DataItemRetrievedEventArgs`1.Exclude">
            <summary>
            Controls whether the item is included in the list.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.DataReadyEventArgs`1">
            <summary>
            Provides data for the LoadCompleted event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.DataReadyEventArgs`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Initializes a new instance of the DataReadyEventArgs class.
            </summary>
            <param name="data">The data that was loaded.</param>
        </member>
        <member name="P:Facebook.Client.Controls.DataReadyEventArgs`1.Data">
            <summary>
            Gets the list of Facebook friends retrieved.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.EventExtensions">
            <summary>
            Provides extension methods to manage events.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.EventExtensions.RaiseEvent``1(System.EventHandler{``0},System.Object,``0)">
            <summary>
            Raises an event.
            </summary>
            <typeparam name="T">The type of the event data generated by the event.</typeparam>
            <param name="handler">An instance of the event to raise.</param>
            <param name="sender">The source of the event.</param>
            <param name="e">An object that contains the event data.</param>
        </member>
        <member name="M:Facebook.Client.Controls.EventExtensions.RaiseEvent``1(System.EventHandler{``0},System.Object,``0,System.Func{``0,System.Boolean})">
            <summary>
            Raises an event that can be cancelled.
            </summary>
            <remarks>
            The method accepts a callback parameter that is called to determine if event invocation continues. If any
            of the event subscribers returns false, invocation stops and the method returns false.
            </remarks>
            <typeparam name="T">The type of the event data generated by the event.</typeparam>
            <param name="handler">An instance of the event to raise.</param>
            <param name="sender">The source of the event.</param>
            <param name="e">An object that contains the event data.</param>
            <param name="cancelInvocation">A predicate that returns true to cancel the invocation.</param>
            <returns>False if the event has been cancelled by any of the subscribers.</returns>
        </member>
        <member name="T:Facebook.Client.Controls.FriendPickerDesignSupport">
            <summary>
            Provides design time support for the FriendPicker control.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.FriendPickerDisplayOrder">
            <summary>
            Specifies whether to display the first or last name first.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPickerDisplayOrder.DisplayFirstNameFirst">
            <summary>
            Display first name and then last name.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPickerDisplayOrder.DisplayLastNameFirst">
            <summary>
            Display last name and then first name.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.FriendPickerSortOrder">
            <summary>
            Specifies the order in which friends are listed in the friend picker.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPickerSortOrder.SortByFirstName">
            <summary>
            Sort the list of friends by their first name.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPickerSortOrder.SortByLastName">
            <summary>
            Sort the list of friends by their last name.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.LoadFailedEventArgs">
            <summary>
            Provides data for the LoadFailed event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.LoadFailedEventArgs.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the LoadFailedEventArgs class.
            </summary>
            <param name="description">The description of the error.</param>
            <param name="reason">The reason for the error.</param>
        </member>
        <member name="P:Facebook.Client.Controls.LoadFailedEventArgs.Description">
            <summary>
            Returns a description of the error.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.LoadFailedEventArgs.Reason">
            <summary>
            Returns a reason for the error.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.Audience">
            <summary>
            Identifies the default audience to use for sessions that post data to Facebook.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Audience.None">
            <summary>
            No audience needed; this value is useful for cases where data will only be read from Facebook.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Audience.OnlyMe">
            <summary>
            Indicates that only the user is able to see posts made by the application.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Audience.Friends">
            <summary>
            Indicates that the user's friends are able to see posts made by the application.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Audience.Everyone">
            <summary>
            Indicates that all Facebook users are able to see posts made by the application.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.AuthenticationErrorEventArgs">
            <summary>
            Provides data for the AuthenticationError event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.AuthenticationErrorEventArgs.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the AuthenticationErrorEventArgs class.
            </summary>
            <param name="description">The description of the authentication error.</param>
            <param name="reason">The reason for the authentication error.</param>
        </member>
        <member name="P:Facebook.Client.Controls.AuthenticationErrorEventArgs.Description">
            <summary>
            Returns a description of the error.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.AuthenticationErrorEventArgs.Reason">
            <summary>
            Returns a reason for the error.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.FacebookSessionState">
            <summary>
            Identifies the states of a Facebook session.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.Created">
            <summary>
            Indicates that the session has not yet been opened and has no cached token.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.CreatedTokenLoaded">
            <summary>
            Indicates that the session has not yet been opened and has a cached token.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.Opening">
            <summary>
            Indicates that the session is in the process of opening.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.Opened">
            <summary>
            Indicates that the session is opened.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.OpenedTokenUpdated">
            <summary>
            Indicates that the session is opened and that the token has changed.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.ClosedLoginFailed">
            <summary>
            Indicates that the session is closed, and that it was not closed normally.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FacebookSessionState.Closed">
            <summary>
            Indicates that the session was closed normally.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.LoginButton">
            <summary>
            Represents a button control that can log in or log out the user when clicked.
            </summary>
            <remarks>
            The LoginButton control keeps track of the authentication status and shows an appropriate label 
            that reflects whether the user is currently authenticated. When a user logs in, it can automatically 
            retrieve their basic information.
            </remarks>
        </member>
        <member name="M:Facebook.Client.Controls.LoginButton.#ctor">
            <summary>
            Initializes a new instance of the LoginButton class. 
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.DefaultAudienceProperty">
            <summary>
            Identifies the DefaultAudience dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.PermissionsProperty">
            <summary>
            Identifies the Permissions dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.LoginBehaviorProperty">
            <summary>
            Identifies the Permissions dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.FetchUserInfoProperty">
            <summary>
            Identifies the FetchUserInfo dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.CurrentSessionProperty">
            <summary>
            Identifies the CurrentSession dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.CurrentUserProperty">
            <summary>
            Identifies the CurrentUser dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.LoginButton.CornerRadiusProperty">
            <summary>
            Identifies the CornerRadius dependency property.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.LoginButton.RequestNewPermissions(System.String)">
            <summary>
            Requests new permissions for the current Facebook session.
            </summary>
            <param name="permissions">The permissions to request.</param>
        </member>
        <member name="M:Facebook.Client.Controls.LoginButton.OnApplyTemplate">
            <summary>
            Invoked whenever application code or internal processes (such as a rebuilding layout pass) call ApplyTemplate. In simplest 
            terms, this means the method is called just before a UI element displays in your app. Override this method to influence the 
            default post-template logic of a class. 
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.LoginButton.SessionStateChanged">
            <summary>
            Occurs whenever the status of the session associated with this control changes.
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.LoginButton.AuthenticationError">
            <summary>
            Occurs whenever a communication or authentication error occurs while logging in.
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.LoginButton.UserInfoChanged">
            <summary>
            Occurs whenever the current user changes.
            </summary>
            <remarks>
            To retrieve the current user information, the FetchUserInfo property must be set to true.
            </remarks>
        </member>
        <member name="P:Facebook.Client.Controls.LoginButton.DefaultAudience">
            <summary>
            Gets or sets the default audience to use, if publish permissions are requested at login time.
            </summary>
            <remarks>
            Certain operations such as publishing a status or publishing a photo require an audience. When the user grants an application 
            permission to perform a publish operation, a default audience is selected as the publication ceiling for the application. This 
            enumerated value allows the application to select which audience to ask the user to grant publish permission for.
            </remarks>
        </member>
        <member name="P:Facebook.Client.Controls.LoginButton.Permissions">
            <summary>
            Gets or sets the permissions to request.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.LoginButton.LoginBehavior">
            <summary>
            Gets or sets the permissions to request.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.LoginButton.FetchUserInfo">
            <summary>
            Controls whether the user information is fetched when the session is opened. Default is true.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.LoginButton.CurrentUser">
            <summary>
            Gets the current logged in user.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.LoginButton.CornerRadius">
            <summary>
            Gets or sets a value that represents the degree to which the corners of a Border are rounded. 
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.SessionStateChangedEventArgs">
            <summary>
            Provides data for the SessionStateChanged event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.SessionStateChangedEventArgs.#ctor(Facebook.Client.Controls.FacebookSessionState)">
            <summary>
            Initializes a new instance of the SessionStateChangedEventArgs class.
            </summary>
            <param name="sessionState">The current state of the Facebook session.</param>
        </member>
        <member name="P:Facebook.Client.Controls.SessionStateChangedEventArgs.SessionState">
            <summary>
            Gets the current state of the Facebook session.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.UserInfoChangedEventArgs">
            <summary>
            Provides data for the UserInfoChanged event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.UserInfoChangedEventArgs.#ctor(Facebook.Client.GraphUser)">
            <summary>
            Initializes a new instance of the UserInfoChangedEventArgs class.
            </summary>
            <param name="user">The current user.</param>
        </member>
        <member name="P:Facebook.Client.Controls.UserInfoChangedEventArgs.User">
            <summary>
            Gets the current user, or null if there is no user.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.AlphaKeyGroup`1">
            <summary>
            Helper class that is used to convert a flat list of data into a grouped list in which the entries are grouped by a key.
            </summary>
            <see href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj244365%28v=vs.105%29.aspx"/>
            <typeparam name="T">The data type of the grouped list.</typeparam>
        </member>
        <member name="M:Facebook.Client.Controls.AlphaKeyGroup`1.#ctor(System.String)">
            <summary>
            Initializes a new instance of the AlphaKeyGroup class.
            </summary>
            <param name="key">The key for this group.</param>
        </member>
        <member name="M:Facebook.Client.Controls.AlphaKeyGroup`1.#ctor(System.Linq.IGrouping{System.String,`0})">
            <summary>
            Initializes a new instance of the AlphaKeyGroup class.
            </summary>
            <param name="grouping">The grouping object. N.B. this will enumerate all items.</param>
        </member>
        <member name="M:Facebook.Client.Controls.AlphaKeyGroup`1.CreateGroups(System.Collections.Generic.IEnumerable{`0},System.Globalization.CultureInfo,Facebook.Client.Controls.AlphaKeyGroup{`0}.GetKeyDelegate,System.Boolean)">
            <summary>
            Create a list of AlphaGroup&lt;T&gt; with keys set by a SortedLocaleGrouping.
            </summary>
            <param name="items">The items to place in the groups.</param>
            <param name="ci">The CultureInfo to group and sort by.</param>
            <param name="getKey">A delegate to get the key from an item.</param>
            <param name="sort">Will sort the data if true.</param>
            <returns>An items source for a LongListSelector</returns>
        </member>
        <member name="M:Facebook.Client.Controls.AlphaKeyGroup`1.CreateGroups(Facebook.Client.Controls.SortedLocaleGrouping)">
            <summary>
            Create a list of AlphaGroup&lt;T&gt; with keys set by a SortedLocaleGrouping.
            </summary>
            <param name="slg">The sorted group headers for the specified locale</param>
            <returns>The items source for a LongListSelector</returns>
        </member>
        <member name="P:Facebook.Client.Controls.AlphaKeyGroup`1.Key">
            <summary>
            Gets the Key of this group.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.AlphaKeyGroup`1.GetKeyDelegate">
            <summary>
            The delegate that will be used to obtain the key information.
            </summary>
            <param name="item">An object of type T</param>
            <returns>The key value to use for this object</returns>
        </member>
        <member name="T:Facebook.Client.Controls.PickerSelectionMode">
            <summary>
            Specifies the selection mode of a Picker control.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PickerSelectionMode.None">
            <summary>
            The user can't select items.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PickerSelectionMode.Single">
            <summary>
            The user can select a single item.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PickerSelectionMode.Multiple">
            <summary>
            The user can select multiple items.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PickerSelectionMode.Extended">
            <summary>
            The user can select multiple items. The selected items don't have to be contiguous.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.LocationCoordinate">
            <summary>
            Represents the coordinates of a place.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.LocationCoordinate.#ctor(System.Double,System.Double)">
            <summary>
            Initializes a new instance of the LocationCoordinate class.
            </summary>
            <param name="latitude">The latitude portion of the coordinate.</param>
            <param name="longitude">The longitude portion of the coordinate.</param>
        </member>
        <member name="P:Facebook.Client.Controls.LocationCoordinate.Latitude">
            <summary>
            Gets the latitude portion of the coordinate.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.LocationCoordinate.Longitude">
            <summary>
            Gets the longitude portion of the coordinate.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.PlacePicker">
            <summary>
            Shows a user interface that can be used to select Facebook places.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.Picker`1">
            <summary>
            Displays a list of selectable items with optional multi-selection.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.Picker`1.#ctor">
            <summary>
            Initializes a new instance of the Picker class.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Picker`1.SelectionModeProperty">
            <summary>
            Identifies the SelectionMode dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Picker`1.GroupHeaderForegroundProperty">
            <summary>
            Identifies the GroupHeaderForeground dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Picker`1.GroupHeaderBackgroundProperty">
            <summary>
            Identifies the GroupHeaderBackground dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Picker`1.ItemsProperty">
            <summary>
            Identifies the Items dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Picker`1.SelectedItemProperty">
            <summary>
            Identifies the SelectedItem dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.Picker`1.SelectedItemsProperty">
            <summary>
            Identifies the SelectedItems dependency property.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.Picker`1.OnApplyTemplate">
            <summary>
            Invoked whenever application code or internal processes (such as a rebuilding layout pass) call ApplyTemplate. In simplest 
            terms, this means the method is called just before a UI element displays in your app. Override this method to influence the 
            default post-template logic of a class. 
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.Picker`1.DataItemRetrieved">
            <summary>
            Occurs whenever a new item is about to be added to the list.
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.Picker`1.LoadCompleted">
            <summary>
            Occurs when the items in the list have finished loading.
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.Picker`1.LoadFailed">
            <summary>
            Occurs whenever an error occurs while loading data.
            </summary>
        </member>
        <member name="E:Facebook.Client.Controls.Picker`1.SelectionChanged">
            <summary>
            Occurs when the current selection changes.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.Picker`1.SelectionMode">
            <summary>
            Gets or sets the selection behavior of the control. 
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.Picker`1.GroupHeaderForeground">
            <summary>
            Gets or sets the foreground brush used for the group headers.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.Picker`1.GroupHeaderBackground">
            <summary>
            Gets or sets the background brush used for the group headers.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.Picker`1.Items">
            <summary>
            Gets the list of currently selected items for the Picker control.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.Picker`1.SelectedItem">
            <summary>
            Gets the currently selected item for the Picker control.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.Picker`1.SelectedItems">
            <summary>
            Gets the list of currently selected items for the Picker control.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.PlacePicker.#ctor">
            <summary>
            Initializes a new instance of the PlacePicker class.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.AccessTokenProperty">
            <summary>
            Identifies the AccessToken dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.DisplayFieldsProperty">
            <summary>
            Identifies the DisplayFields dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.DisplayProfilePicturesProperty">
            <summary>
            Identifies the DisplayProfilePictures dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.PictureSizeProperty">
            <summary>
            Identifies the PictureSize dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.SearchTextProperty">
            <summary>
            Identifies the SearchText dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.RadiusInMetersProperty">
            <summary>
            Identifies the RadiusInMeters dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.LatitudeProperty">
            <summary>
            Identifies the Latitude dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.LongitudeProperty">
            <summary>
            Identifies the Longitude dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.PlacePicker.TrackLocationProperty">
            <summary>
            Identifies the TrackLocation dependency property.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.AccessToken">
            <summary>
            Gets or sets the access token returned by the Facebook Login service.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.DisplayFields">
            <summary>
            Gets or sets additional fields to fetch when requesting place data.
            </summary>
            <remarks>
            By default, the following data is retrieved for each place: TODO: to be completed.
            </remarks>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.DisplayProfilePictures">
            <summary>
            Specifies whether profile pictures are displayed.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.PictureSize">
            <summary>
            Gets or sets the size of the profile pictures displayed.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.SearchText">
            <summary>
            Gets or sets the search text to filter place data (e.g. Restaurant, Supermarket, Sports, etc...)
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.RadiusInMeters">
            <summary>
            Gets or sets the distance in meters from the search location for which results are returned.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.Latitude">
            <summary>
            Gets or sets the latitude of the location around which to retrieve place data.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.Longitude">
            <summary>
            Gets or sets the longitude of the location around which to retrieve place data.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.PlacePicker.TrackLocation">
            <summary>
            Specifies whether to track the current location for searches.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.PlacePickerDesignSupport">
            <summary>
            Provides design time support for the FriendPicker control.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.CropMode">
            <summary>
            Specifies the cropping treatment of the profile picture.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.CropMode.Square">
            <summary>
            Specifies the square version of the picture that the Facebook user defined.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.CropMode.Original">
            <summary>
            Specifies the original profile picture, as uploaded by the user.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.CropMode.Fill">
            <summary>
            Specifies the picture is resized to fit the control's dimensions while preserving its native aspect ratio.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.ProfilePicture">
            <summary>
            Shows the profile picture for an object such as a user, place, or event.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.ProfilePicture.#ctor">
            <summary>
            Initializes a new instance of the ProfilePicture class.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.ProfilePicture.AccessTokenProperty">
            <summary>
            Identifies the AccessToken dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.ProfilePicture.CropModeProperty">
            <summary>
            Identifies the CropMode dependency property.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.ProfilePicture.OnApplyTemplate">
            <summary>
            Invoked whenever application code or internal processes (such as a rebuilding layout pass) call ApplyTemplate. In simplest 
            terms, this means the method is called just before a UI element displays in your app. Override this method to influence the 
            default post-template logic of a class. 
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.ProfilePicture.ArrangeOverride(Windows.Foundation.Size)">
            <summary>
            Provides the behavior for the "Arrange" pass of layout. Classes can override this method to define their own "Arrange" pass behavior.
            </summary>
            <param name="finalSize">The final area within the parent that this object should use to arrange itself and its children.</param>
            <returns>The actual size that is used after the element is arranged in layout.</returns>
        </member>
        <member name="P:Facebook.Client.Controls.ProfilePicture.AccessToken">
            <summary>
            Gets or sets the access token returned by the Facebook Login service.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.ProfilePicture.CropMode">
            <summary>
            Gets or sets the cropping treatment of the profile picture.
            </summary>
        </member>
        <member name="T:Facebook.Client.GraphLocation">
            <summary>
            Provides a strongly-typed representation of a Facebook Location as defined by the Graph API.
            </summary>
            <remarks>
            The GraphLocation class represents the most commonly used properties of a Facebook Location object.
            </remarks>
        </member>
        <member name="T:Facebook.Client.GraphObject">
            <summary>
            Base class for objects returned by the Facebook Graph API that provides access to its properties dynamically.
            </summary>
        </member>
        <member name="M:Facebook.Client.GraphObject.#ctor">
            <summary>
            Initializes a new instance of the GraphObject class.
            </summary>
        </member>
        <member name="M:Facebook.Client.GraphObject.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Initializes a new instance of the GraphObject class from a dynamic object returned by the Facebook API.
            </summary>
            <param name="graphObject">The dynamic object representing the Facebook object.</param>
        </member>
        <member name="P:Facebook.Client.GraphObject.Item(System.String)">
            <summary>
            Gets the property of the object with the specified key.
            </summary>
            <param name="key"></param>
            <returns>The key of the property to get.</returns>
        </member>
        <member name="M:Facebook.Client.GraphLocation.#ctor">
            <summary>
            Initializes a new instance of the GraphLocation class.
            </summary>
        </member>
        <member name="M:Facebook.Client.GraphLocation.#ctor(System.Object)">
            <summary>
            Initializes a new instance of the GraphLocation class from a dynamic object returned by the Facebook API.
            </summary>
            <param name="location">The dynamic object representing the Facebook location.</param>
        </member>
        <member name="P:Facebook.Client.GraphLocation.Street">
            <summary>
            Gets or sets the street component of the location.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphLocation.City">
            <summary>
            Gets or sets the city component of the location.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphLocation.State">
            <summary>
            Gets or sets the state component of the location.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphLocation.Country">
            <summary>
            Gets or sets the country component of the location.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphLocation.Zip">
            <summary>
            Gets or sets the postal code component of the location.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphLocation.Latitude">
            <summary>
            Gets or sets the latitude component of the location.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphLocation.Longitude">
            <summary>
            Gets or sets the longitude component of the location.
            </summary>
        </member>
        <member name="T:Facebook.Client.GraphPlace">
            <summary>
            Provides a strongly-typed representation of a Facebook Place as defined by the Graph API.
            </summary>
            <remarks>
            The GraphPlace class represents the most commonly used properties of a Facebook Place object.
            </remarks>
        </member>
        <member name="M:Facebook.Client.GraphPlace.#ctor">
            <summary>
            Initializes a new instance of the GraphPlace class.
            </summary>
        </member>
        <member name="M:Facebook.Client.GraphPlace.#ctor(System.Object)">
            <summary>
            Initializes a new instance of the GraphPlace class from a dynamic object returned by the Facebook API.
            </summary>
            <param name="place">The dynamic object representing the Facebook place.</param>
        </member>
        <member name="P:Facebook.Client.GraphPlace.Id">
            <summary>
            Gets or sets the ID of the place.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphPlace.Name">
            <summary>
            Gets or sets the name of the place.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphPlace.Location">
            <summary>
            Gets or sets the location of the place.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphPlace.ProfilePictureUrl">
            <summary>
            Gets or sets the URL of the place's profile picture.
            </summary>
        </member>
        <member name="T:Facebook.Client.GraphUser">
            <summary>
            Provides a strongly-typed representation of a Facebook User as defined by the Graph API.
            </summary>
            <remarks>
            The GraphUser class represents the most commonly used properties of a Facebook User object.
            </remarks>
        </member>
        <member name="M:Facebook.Client.GraphUser.#ctor">
            <summary>
            Initializes a new instance of the GraphUser class.
            </summary>
        </member>
        <member name="M:Facebook.Client.GraphUser.#ctor(System.Object)">
            <summary>
            Initializes a new instance of the GraphUser class from a dynamic object returned by the Facebook API.
            </summary>
            <param name="user">The dynamic object representing the Facebook user.</param>
        </member>
        <member name="P:Facebook.Client.GraphUser.Id">
            <summary>
            Gets or sets the ID of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.Name">
            <summary>
            Gets or sets the name of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.UserName">
            <summary>
            Gets or sets the Facebook username of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.FirstName">
            <summary>
            Gets or sets the first name of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.MiddleName">
            <summary>
            Gets or sets the middle name of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.LastName">
            <summary>
            Gets or sets the last name of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.Birthday">
            <summary>
            Gets or sets the birthday of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.Link">
            <summary>
            Gets or sets the Facebook URL of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.Location">
            <summary>
            Gets or sets the current city of the user.
            </summary>
        </member>
        <member name="P:Facebook.Client.GraphUser.ProfilePictureUrl">
            <summary>
            Gets or sets the URL of the user's profile picture.
            </summary>
        </member>
        <member name="M:Facebook.Client.Session.Logout">
            <summary>
            Log a user out of Facebook.
            </summary>
        </member>
        <member name="P:Facebook.Client.Session.AppId">
            <summary>
            Facebook AppId, obtained from FacebookConfig.xml if it exist.
            </summary>
        </member>
        <member name="P:Facebook.Client.Session.CurrentAccessTokenData">
            <summary>
            The Access Token information for the last time the app ran
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.PickerSelectionModeConverter">
            <summary>
            Converts between PickerSelectionMode and ListViewSelectionMode values.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.PickerSelectionModeConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Converts a PickerSelectionMode value to a ListViewSelectionMode value.
            </summary>
            <param name="value">The value that is produced by the binding target.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">Unused.</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>A converted value.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.PickerSelectionModeConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.SizeToGridCellConverter">
            <summary>
            Calculates the size of group templates used by the zoomed out view to arrange them evenly.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.SizeToGridCellConverter.Convert(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Calculates the width and height of the group templates based on the size of the control.
            </summary>
            <param name="value">A reference to the control hosting the group templates.</param>
            <param name="targetType">The type to convert to.</param>
            <param name="parameter">Unused.</param>
            <param name="language">The culture to use in the converter (unused).</param>
            <returns>.</returns>
        </member>
        <member name="M:Facebook.Client.Controls.SizeToGridCellConverter.ConvertBack(System.Object,System.Type,System.Object,System.String)">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.FriendPicker">
            <summary>
            Shows a user interface that can be used to select Facebook friends.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.FriendPicker.#ctor">
            <summary>
            Initializes a new instance of the FriendPicker class.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.AccessTokenProperty">
            <summary>
            Identifies the AccessToken dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.ProfileIdProperty">
            <summary>
            Identifies the ProfileId dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.DisplayOrderProperty">
            <summary>
            Identifies the DisplayOrder dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.SortOrderProperty">
            <summary>
            Identifies the SortOrder dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.DisplayFieldsProperty">
            <summary>
            Identifies the DisplayFields dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.DisplayProfilePicturesProperty">
            <summary>
            Identifies the DisplayProfilePictures dependency property.
            </summary>
        </member>
        <member name="F:Facebook.Client.Controls.FriendPicker.PictureSizeProperty">
            <summary>
            Identifies the PictureSize dependency property.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.AccessToken">
            <summary>
            Gets or sets the access token returned by the Facebook Login service.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.ProfileId">
            <summary>
            The profile ID of the user for which to retrieve a list of friends.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.DisplayOrder">
            <summary>
            Controls whether to display first name or last name first.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.SortOrder">
            <summary>
            Controls the order in which friends are listed in the friend picker.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.DisplayFields">
            <summary>
            Gets or sets additional fields to fetch when requesting friend data.
            </summary>
            <remarks>
            By default, the following data is retrieved for each friend: id, name, first_name, middle_name, last_name and picture.
            </remarks>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.DisplayProfilePictures">
            <summary>
            Specifies whether profile pictures are displayed.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.FriendPicker.PictureSize">
            <summary>
            Gets or sets the size of the profile pictures displayed.
            </summary>
        </member>
        <member name="T:Facebook.Client.Controls.SortedLocaleGrouping">
            <summary>
            Provides a way to access basic set of sorted group headers for any locale.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.SortedLocaleGrouping.#ctor">
            <summary>
            Initializes a new instance of the SortedLocaleGrouping class.
            </summary>
        </member>
        <member name="M:Facebook.Client.Controls.SortedLocaleGrouping.#ctor(System.Globalization.CultureInfo)">
            <summary>
            Initializes a new instance of the SortedLocaleGrouping class with the specified CultureInfo.
            </summary>
            <param name="culture">The specified CultureInfo.</param>
        </member>
        <member name="M:Facebook.Client.Controls.SortedLocaleGrouping.GetGroupIndex(System.String)">
            <summary>
            Returns the group index to which the value string belongs.
            </summary>
            <param name="p">The specified string.</param>
            <returns>The group index to which the value string belongs.</returns>
            <remarks>Return value matches the position in the GroupDisplayNames collection.</remarks>
        </member>
        <member name="P:Facebook.Client.Controls.SortedLocaleGrouping.GroupDisplayNames">
            <summary>
            Get the strings for all the groups for this locale.
            </summary>
        </member>
        <member name="P:Facebook.Client.Controls.SortedLocaleGrouping.SupportsPhonetics">
            <summary>
            Gets a value that indicates whether the culture supports optional phonetic grouping.
            </summary>
        </member>
        <member name="T:Facebook.Client.WebviewAuthentication">
            <summary>
            This class mimics the functionality provided by WebviewAuthentication available in Win8.
            </summary>
        </member>
        <member name="M:Facebook.Client.WebviewAuthentication.AuthenticateAsync(Windows.Security.Authentication.Web.WebAuthenticationOptions,System.Uri,System.Uri)">
            <summary>
            Mimics the WebviewAuthentication's AuthenticateAsync method.
            </summary>
        </member>
        <member name="T:Facebook.Client.FacebookDialogPage">
            <summary>
            An empty page that can be used on its own or navigated to within a Frame.
            </summary>
        </member>
        <member name="M:Facebook.Client.FacebookDialogPage.OnNavigatedTo(Windows.UI.Xaml.Navigation.NavigationEventArgs)">
            <summary>
            Invoked when this page is about to be displayed in a Frame.
            </summary>
            <param name="e">Event data that describes how this page was reached.  The Parameter
            property is typically used to configure the page.</param>
        </member>
    </members>
</doc>

Commits for Nextrek/Android/SmartCharging/SmartCharging_WP/packages/Facebook.Client.1.0.4/lib/win81/Facebook.Client.XML

Diff revisions: vs.
Revision Author Commited Message
799 JMBauan picture JMBauan Thu 08 Oct, 2015 13:36:32 +0000