OpenSource » SampleCode » NexportWebApiMvcSampleSite Sample MVC 4 Website project that demonstrates the use of the NexPort WebApi
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

tip Merge

Changeset 0a6c05778811

Parents ae8056732884

Parents b119a912ac60

by Profile picture of User 240Clayton Miller <clayton.miller@nexportengineering.com>

Changes to 82 files · Browse files at 0a6c05778811 Showing diff from parent ae8056732884 b119a912ac60 Diff from another changeset...

 
 
 
1
2
3
4
5
6
 
 
 
 
 
 
 
 
 
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?> -<configuration> - <startup> - <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> - </startup> -</configuration> \ No newline at end of file
 
 
 
 
 
1
2
3
4
5
6
 
 
 
 
 
 
 
 
 
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?> -<configuration> - <startup> - <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> - </startup> -</configuration> \ No newline at end of file
 
 
 
 
 
1
2
3
4
5
6
 
 
 
 
 
 
 
@@ -1,6 +0,0 @@
-C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\bin\Debug\NexportWebApiDemo.ApiModels.dll.config -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\bin\Debug\NexportWebApiDemo.ApiModels.dll -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\bin\Debug\NexportWebApiDemo.ApiModels.pdb -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\obj\Debug\NexportWebApiDemo.ApiModels.csprojResolveAssemblyReference.cache -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\obj\Debug\NexportWebApiDemo.ApiModels.dll -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\obj\Debug\NexportWebApiDemo.ApiModels.pdb
 
 
 
 
 
 
 
1
2
3
4
5
6
 
 
 
 
 
 
 
@@ -1,6 +0,0 @@
-C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\obj\Debug\NexportWebApiDemo.Models.csprojResolveAssemblyReference.cache -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\bin\Debug\NexportWebApiDemo.Models.dll.config -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\bin\Debug\NexportWebApiDemo.Models.dll -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\bin\Debug\NexportWebApiDemo.Models.pdb -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\obj\Debug\NexportWebApiDemo.Models.dll -C:\Sandbox\NexportWebApiDemo\NexportWebApiDemo.Models\obj\Debug\NexportWebApiDemo.Models.pdb
 
 
 
 
 
 
(No changes)
(No changes)
(No changes)
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,1064 +0,0 @@
-<?xml version="1.0"?> -<doc> - <assembly> - <name>Microsoft.AspNet.Identity.EntityFramework</name> - </assembly> - <members> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.RoleStore`1"> - <summary> - EntityFramework based implementation - </summary> - <typeparam name="TRole"></typeparam> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3"> - <summary> - EntityFramework based implementation - </summary> - <typeparam name="TRole"></typeparam> - <typeparam name="TKey"></typeparam> - <typeparam name="TUserRole"></typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.#ctor(System.Data.Entity.DbContext)"> - <summary> - Constructor which takes a db context and wires up the stores with default instances using the context - </summary> - <param name="context"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.FindByIdAsync(`1)"> - <summary> - Find a role by id - </summary> - <param name="roleId"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.FindByNameAsync(System.String)"> - <summary> - Find a role by name - </summary> - <param name="roleName"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.CreateAsync(`0)"> - <summary> - Insert an entity - </summary> - <param name="role"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.DeleteAsync(`0)"> - <summary> - Mark an entity for deletion - </summary> - <param name="role"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.UpdateAsync(`0)"> - <summary> - Update an entity - </summary> - <param name="role"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Dispose"> - <summary> - Dispose the store - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Dispose(System.Boolean)"> - <summary> - If disposing, calls dispose on the Context. Always nulls out the Context - </summary> - <param name="disposing"></param> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Context"> - <summary> - Context for the store - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.DisposeContext"> - <summary> - If true will call dispose on the DbContext during Dipose - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.RoleStore`3.Roles"> - <summary> - Returns an IQueryable of users - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`1.#ctor"> - <summary> - Constructor - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`1.#ctor(System.Data.Entity.DbContext)"> - <summary> - Constructor - </summary> - <param name="context"></param> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.UserStore`1"> - <summary> - EntityFramework based user store implementation that supports IUserStore, IUserLoginStore, IUserClaimStore and - IUserRoleStore - </summary> - <typeparam name="TUser"></typeparam> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.UserStore`6"> - <summary> - EntityFramework based user store implementation that supports IUserStore, IUserLoginStore, IUserClaimStore and - IUserRoleStore - </summary> - <typeparam name="TUser"></typeparam> - <typeparam name="TRole"></typeparam> - <typeparam name="TKey"></typeparam> - <typeparam name="TUserLogin"></typeparam> - <typeparam name="TUserRole"></typeparam> - <typeparam name="TUserClaim"></typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.#ctor(System.Data.Entity.DbContext)"> - <summary> - Constructor which takes a db context and wires up the stores with default instances using the context - </summary> - <param name="context"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetClaimsAsync(`0)"> - <summary> - Return the claims for a user - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AddClaimAsync(`0,System.Security.Claims.Claim)"> - <summary> - Add a claim to a user - </summary> - <param name="user"></param> - <param name="claim"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.RemoveClaimAsync(`0,System.Security.Claims.Claim)"> - <summary> - Remove a claim from a user - </summary> - <param name="user"></param> - <param name="claim"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetEmailConfirmedAsync(`0)"> - <summary> - Returns whether the user email is confirmed - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetEmailConfirmedAsync(`0,System.Boolean)"> - <summary> - Set IsConfirmed on the user - </summary> - <param name="user"></param> - <param name="confirmed"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetEmailAsync(`0,System.String)"> - <summary> - Set the user email - </summary> - <param name="user"></param> - <param name="email"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetEmailAsync(`0)"> - <summary> - Get the user's email - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByEmailAsync(System.String)"> - <summary> - Find a user by email - </summary> - <param name="email"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetLockoutEndDateAsync(`0)"> - <summary> - Returns the DateTimeOffset that represents the end of a user's lockout, any time in the past should be considered - not locked out. - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetLockoutEndDateAsync(`0,System.DateTimeOffset)"> - <summary> - Locks a user out until the specified end date (set to a past date, to unlock a user) - </summary> - <param name="user"></param> - <param name="lockoutEnd"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.IncrementAccessFailedCountAsync(`0)"> - <summary> - Used to record when an attempt to access the user has failed - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.ResetAccessFailedCountAsync(`0)"> - <summary> - Used to reset the account access count, typically after the account is successfully accessed - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetAccessFailedCountAsync(`0)"> - <summary> - Returns the current number of failed access attempts. This number usually will be reset whenever the password is - verified or the account is locked out. - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetLockoutEnabledAsync(`0)"> - <summary> - Returns whether the user can be locked out. - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetLockoutEnabledAsync(`0,System.Boolean)"> - <summary> - Sets whether the user can be locked out. - </summary> - <param name="user"></param> - <param name="enabled"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByIdAsync(`2)"> - <summary> - Find a user by id - </summary> - <param name="userId"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByNameAsync(System.String)"> - <summary> - Find a user by name - </summary> - <param name="userName"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.CreateAsync(`0)"> - <summary> - Insert an entity - </summary> - <param name="user"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.DeleteAsync(`0)"> - <summary> - Mark an entity for deletion - </summary> - <param name="user"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.UpdateAsync(`0)"> - <summary> - Update an entity - </summary> - <param name="user"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Dispose"> - <summary> - Dispose the store - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindAsync(Microsoft.AspNet.Identity.UserLoginInfo)"> - <summary> - Returns the user associated with this login - </summary> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AddLoginAsync(`0,Microsoft.AspNet.Identity.UserLoginInfo)"> - <summary> - Add a login to the user - </summary> - <param name="user"></param> - <param name="login"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.RemoveLoginAsync(`0,Microsoft.AspNet.Identity.UserLoginInfo)"> - <summary> - Remove a login from a user - </summary> - <param name="user"></param> - <param name="login"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetLoginsAsync(`0)"> - <summary> - Get the logins for a user - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetPasswordHashAsync(`0,System.String)"> - <summary> - Set the password hash for a user - </summary> - <param name="user"></param> - <param name="passwordHash"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetPasswordHashAsync(`0)"> - <summary> - Get the password hash for a user - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.HasPasswordAsync(`0)"> - <summary> - Returns true if the user has a password set - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetPhoneNumberAsync(`0,System.String)"> - <summary> - Set the user's phone number - </summary> - <param name="user"></param> - <param name="phoneNumber"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetPhoneNumberAsync(`0)"> - <summary> - Get a user's phone number - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetPhoneNumberConfirmedAsync(`0)"> - <summary> - Returns whether the user phoneNumber is confirmed - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetPhoneNumberConfirmedAsync(`0,System.Boolean)"> - <summary> - Set PhoneNumberConfirmed on the user - </summary> - <param name="user"></param> - <param name="confirmed"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AddToRoleAsync(`0,System.String)"> - <summary> - Add a user to a role - </summary> - <param name="user"></param> - <param name="roleName"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.RemoveFromRoleAsync(`0,System.String)"> - <summary> - Remove a user from a role - </summary> - <param name="user"></param> - <param name="roleName"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetRolesAsync(`0)"> - <summary> - Get the names of the roles a user is a member of - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.IsInRoleAsync(`0,System.String)"> - <summary> - Returns true if the user is in the named role - </summary> - <param name="user"></param> - <param name="roleName"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetSecurityStampAsync(`0,System.String)"> - <summary> - Set the security stamp for the user - </summary> - <param name="user"></param> - <param name="stamp"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetSecurityStampAsync(`0)"> - <summary> - Get the security stamp for a user - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.SetTwoFactorEnabledAsync(`0,System.Boolean)"> - <summary> - Set whether two factor authentication is enabled for the user - </summary> - <param name="user"></param> - <param name="enabled"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetTwoFactorEnabledAsync(`0)"> - <summary> - Gets whether two factor authentication is enabled for the user - </summary> - <param name="user"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetUserAggregateAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})"> - <summary> - Used to attach child entities to the User aggregate, i.e. Roles, Logins, and Claims - </summary> - <param name="filter"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Dispose(System.Boolean)"> - <summary> - If disposing, calls dispose on the Context. Always nulls out the Context - </summary> - <param name="disposing"></param> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Context"> - <summary> - Context for the store - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.DisposeContext"> - <summary> - If true will call dispose on the DbContext during Dispose - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.AutoSaveChanges"> - <summary> - If true will call SaveChanges after Create/Update/Delete - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.UserStore`6.Users"> - <summary> - Returns an IQueryable of users - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.#ctor"> - <summary> - Default constuctor which uses a new instance of a default EntityyDbContext - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.#ctor(System.Data.Entity.DbContext)"> - <summary> - Constructor - </summary> - <param name="context"></param> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole"> - <summary> - EntityType that represents a user belonging to a role - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole`1"> - <summary> - EntityType that represents a user belonging to a role - </summary> - <typeparam name="TKey"></typeparam> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole`1.UserId"> - <summary> - UserId for the user that is in the role - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole`1.RoleId"> - <summary> - RoleId for the role - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1"> - <summary> - EntityFramework based IIdentityEntityStore that allows query/manipulation of a TEntity set - </summary> - <typeparam name="TEntity">Concrete entity type, i.e .User</typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.#ctor(System.Data.Entity.DbContext)"> - <summary> - Constructor that takes a Context - </summary> - <param name="context"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.GetByIdAsync(System.Object)"> - <summary> - FindAsync an entity by ID - </summary> - <param name="id"></param> - <returns></returns> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Create(`0)"> - <summary> - Insert an entity - </summary> - <param name="entity"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Delete(`0)"> - <summary> - Mark an entity for deletion - </summary> - <param name="entity"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Update(`0)"> - <summary> - Update an entity - </summary> - <param name="entity"></param> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.Context"> - <summary> - Context for the store - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.EntitySet"> - <summary> - Used to query the entities - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.EntityStore`1.DbEntitySet"> - <summary> - EntitySet for this store - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext"> - <summary> - Default IdentityDbContext that uses the default entity types for ASP.NET Identity Users, Roles, Claims, Logins. - Use this overload to add your own entity types. - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6"> - <summary> - Generic IdentityDbContext base that can be customized with entity types that extend from the base IdentityUserXXX types. - </summary> - <typeparam name="TUser"></typeparam> - <typeparam name="TRole"></typeparam> - <typeparam name="TKey"></typeparam> - <typeparam name="TUserLogin"></typeparam> - <typeparam name="TUserRole"></typeparam> - <typeparam name="TUserClaim"></typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor"> - <summary> - Default constructor which uses the "DefaultConnection" connectionString - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.String)"> - <summary> - Constructor which takes the connection string to use - </summary> - <param name="nameOrConnectionString"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.Data.Common.DbConnection,System.Data.Entity.Infrastructure.DbCompiledModel,System.Boolean)"> - <summary> - Constructs a new context instance using the existing connection to connect to a database, and initializes it from - the given model. The connection will not be disposed when the context is disposed if contextOwnsConnection is - false. - </summary> - <param name="existingConnection">An existing connection to use for the new context.</param> - <param name="model">The model that will back this context.</param> - <param name="contextOwnsConnection"> - Constructs a new context instance using the existing connection to connect to a - database, and initializes it from the given model. The connection will not be disposed when the context is - disposed if contextOwnsConnection is false. - </param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.Data.Entity.Infrastructure.DbCompiledModel)"> - <summary> - Constructs a new context instance using conventions to create the name of - the database to which a connection will be made, and initializes it from - the given model. The by-convention name is the full name (namespace + class - name) of the derived context class. See the class remarks for how this is - used to create a connection. - </summary> - <param name="model">The model that will back this context.</param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.Data.Common.DbConnection,System.Boolean)"> - <summary> - Constructs a new context instance using the existing connection to connect - to a database. The connection will not be disposed when the context is disposed - if contextOwnsConnection is false. - </summary> - <param name="existingConnection">An existing connection to use for the new context.</param> - <param name="contextOwnsConnection">If set to true the connection is disposed when the context is disposed, otherwise - the caller must dispose the connection. - </param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.#ctor(System.String,System.Data.Entity.Infrastructure.DbCompiledModel)"> - <summary> - Constructs a new context instance using the given string as the name or connection - string for the database to which a connection will be made, and initializes - it from the given model. See the class remarks for how this is used to create - a connection. - </summary> - <param name="nameOrConnectionString">Either the database name or a connection string.</param> - <param name="model">The model that will back this context.</param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.OnModelCreating(System.Data.Entity.DbModelBuilder)"> - <summary> - Maps table names, and sets up relationships between the various user entities - </summary> - <param name="modelBuilder"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.ValidateEntity(System.Data.Entity.Infrastructure.DbEntityEntry,System.Collections.Generic.IDictionary{System.Object,System.Object})"> - <summary> - Validates that UserNames are unique and case insenstive - </summary> - <param name="entityEntry"></param> - <param name="items"></param> - <returns></returns> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.Users"> - <summary> - IDbSet of Users - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.Roles"> - <summary> - IDbSet of Roles - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`6.RequireUniqueEmail"> - <summary> - If true validates that emails are unique - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor"> - <summary> - Default constructor which uses the DefaultConnection - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.String)"> - <summary> - Constructor which takes the connection string to use - </summary> - <param name="nameOrConnectionString"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.Data.Common.DbConnection,System.Data.Entity.Infrastructure.DbCompiledModel,System.Boolean)"> - <summary> - Constructs a new context instance using the existing connection to connect to a database, and initializes it from - the given model. The connection will not be disposed when the context is disposed if contextOwnsConnection is - false. - </summary> - <param name="existingConnection">An existing connection to use for the new context.</param> - <param name="model">The model that will back this context.</param> - <param name="contextOwnsConnection"> - Constructs a new context instance using the existing connection to connect to a - database, and initializes it from the given model. The connection will not be disposed when the context is - disposed if contextOwnsConnection is false. - </param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.Data.Entity.Infrastructure.DbCompiledModel)"> - <summary> - Constructs a new context instance using conventions to create the name of - the database to which a connection will be made, and initializes it from - the given model. The by-convention name is the full name (namespace + class - name) of the derived context class. See the class remarks for how this is - used to create a connection. - </summary> - <param name="model">The model that will back this context.</param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.Data.Common.DbConnection,System.Boolean)"> - <summary> - Constructs a new context instance using the existing connection to connect - to a database. The connection will not be disposed when the context is disposed - if contextOwnsConnection is false. - </summary> - <param name="existingConnection">An existing connection to use for the new context.</param> - <param name="contextOwnsConnection">If set to true the connection is disposed when the context is disposed, otherwise - the caller must dispose the connection. - </param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext.#ctor(System.String,System.Data.Entity.Infrastructure.DbCompiledModel)"> - <summary> - Constructs a new context instance using the given string as the name or connection - string for the database to which a connection will be made, and initializes - it from the given model. See the class remarks for how this is used to create - a connection. - </summary> - <param name="nameOrConnectionString">Either the database name or a connection string.</param> - <param name="model">The model that will back this context.</param> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1"> - <summary> - DbContext which uses a custom user entity with a string primary key - </summary> - <typeparam name="TUser"></typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor"> - <summary> - Default constructor which uses the DefaultConnection - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.String)"> - <summary> - Constructor which takes the connection string to use - </summary> - <param name="nameOrConnectionString"></param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.String,System.Boolean)"> - <summary> - Constructor which takes the connection string to use - </summary> - <param name="nameOrConnectionString"></param> - <param name="throwIfV1Schema">Will throw an exception if the schema matches that of Identity 1.0.0</param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.Data.Common.DbConnection,System.Data.Entity.Infrastructure.DbCompiledModel,System.Boolean)"> - <summary> - Constructs a new context instance using the existing connection to connect to a database, and initializes it from - the given model. The connection will not be disposed when the context is disposed if contextOwnsConnection is - false. - </summary> - <param name="existingConnection">An existing connection to use for the new context.</param> - <param name="model">The model that will back this context.</param> - <param name="contextOwnsConnection"> - Constructs a new context instance using the existing connection to connect to a - database, and initializes it from the given model. The connection will not be disposed when the context is - disposed if contextOwnsConnection is false. - </param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.Data.Entity.Infrastructure.DbCompiledModel)"> - <summary> - Constructs a new context instance using conventions to create the name of - the database to which a connection will be made, and initializes it from - the given model. The by-convention name is the full name (namespace + class - name) of the derived context class. See the class remarks for how this is - used to create a connection. - </summary> - <param name="model">The model that will back this context.</param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.Data.Common.DbConnection,System.Boolean)"> - <summary> - Constructs a new context instance using the existing connection to connect - to a database. The connection will not be disposed when the context is disposed - if contextOwnsConnection is false. - </summary> - <param name="existingConnection">An existing connection to use for the new context.</param> - <param name="contextOwnsConnection">If set to true the connection is disposed when the context is disposed, otherwise - the caller must dispose the connection. - </param> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`1.#ctor(System.String,System.Data.Entity.Infrastructure.DbCompiledModel)"> - <summary> - Constructs a new context instance using the given string as the name or connection - string for the database to which a connection will be made, and initializes - it from the given model. See the class remarks for how this is used to create - a connection. - </summary> - <param name="nameOrConnectionString">Either the database name or a connection string.</param> - <param name="model">The model that will back this context.</param> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityResources"> - <summary> - A strongly-typed resource class, for looking up localized strings, etc. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.ResourceManager"> - <summary> - Returns the cached ResourceManager instance used by this class. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.Culture"> - <summary> - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.DbValidationFailed"> - <summary> - Looks up a localized string similar to Database Validation failed.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.DuplicateEmail"> - <summary> - Looks up a localized string similar to Email {0} is already taken.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.DuplicateUserName"> - <summary> - Looks up a localized string similar to User name {0} is already taken.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.EntityFailedValidation"> - <summary> - Looks up a localized string similar to Entity Type {0} failed validation.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.ExternalLoginExists"> - <summary> - Looks up a localized string similar to A user with that external login already exists.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.IdentityV1SchemaError"> - <summary> - Looks up a localized string similar to The model backing the &apos;ApplicationDbContext&apos; context has changed since the database was created. This could have happened because the model used by ASP.NET Identity Framework has changed or the model being used in your application has changed. To resolve this issue, you need to update your database. Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?LinkId=301867). Before you update your database using Code First Migrations, please disable the schema consistency ch [rest of string was truncated]&quot;;. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.IncorrectType"> - <summary> - Looks up a localized string similar to Incorrect type, expected type of {0}.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.PropertyCannotBeEmpty"> - <summary> - Looks up a localized string similar to {0} cannot be null or empty.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.RoleAlreadyExists"> - <summary> - Looks up a localized string similar to Role {0} already exists.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.RoleIsNotEmpty"> - <summary> - Looks up a localized string similar to Role is not empty.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.RoleNotFound"> - <summary> - Looks up a localized string similar to Role {0} does not exist.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserAlreadyInRole"> - <summary> - Looks up a localized string similar to User already in role.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserIdNotFound"> - <summary> - Looks up a localized string similar to The UserId cannot be found.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserLoginAlreadyExists"> - <summary> - Looks up a localized string similar to UserLogin already exists for loginProvider: {0} with providerKey: {1}. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserNameNotFound"> - <summary> - Looks up a localized string similar to User {0} does not exist.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.UserNotInRole"> - <summary> - Looks up a localized string similar to User is not in role.. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityResources.ValueCannotBeNullOrEmpty"> - <summary> - Looks up a localized string similar to Value cannot be null or empty.. - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityRole"> - <summary> - Represents a Role entity - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2"> - <summary> - Represents a Role entity - </summary> - <typeparam name="TKey"></typeparam> - <typeparam name="TUserRole"></typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.#ctor"> - <summary> - Constructor - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.Users"> - <summary> - Navigation property for users in the role - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.Id"> - <summary> - Role id - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityRole`2.Name"> - <summary> - Role name - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityRole.#ctor"> - <summary> - Constructor - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityRole.#ctor(System.String)"> - <summary> - Constructor - </summary> - <param name="roleName"></param> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUser"> - <summary> - Default EntityFramework IUser implementation - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4"> - <summary> - Default EntityFramework IUser implementation - </summary> - <typeparam name="TKey"></typeparam> - <typeparam name="TLogin"></typeparam> - <typeparam name="TRole"></typeparam> - <typeparam name="TClaim"></typeparam> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.#ctor"> - <summary> - Constructor - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Email"> - <summary> - Email - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.EmailConfirmed"> - <summary> - True if the email is confirmed, default is false - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.PasswordHash"> - <summary> - The salted/hashed form of the user password - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.SecurityStamp"> - <summary> - A random value that should change whenever a users credentials have changed (password changed, login removed) - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.PhoneNumber"> - <summary> - PhoneNumber for the user - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.PhoneNumberConfirmed"> - <summary> - True if the phone number is confirmed, default is false - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.TwoFactorEnabled"> - <summary> - Is two factor enabled for the user - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.LockoutEndDateUtc"> - <summary> - DateTime in UTC when lockout ends, any time in the past is considered not locked out. - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.LockoutEnabled"> - <summary> - Is lockout enabled for this user - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.AccessFailedCount"> - <summary> - Used to record failures for the purposes of lockout - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Roles"> - <summary> - Navigation property for user roles - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Claims"> - <summary> - Navigation property for user claims - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Logins"> - <summary> - Navigation property for user logins - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.Id"> - <summary> - User ID (Primary Key) - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUser`4.UserName"> - <summary> - User name - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityUser.#ctor"> - <summary> - Constructor which creates a new Guid for the Id - </summary> - </member> - <member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityUser.#ctor(System.String)"> - <summary> - Constructor that takes a userName - </summary> - <param name="userName"></param> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim"> - <summary> - EntityType that represents one specific user claim - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1"> - <summary> - EntityType that represents one specific user claim - </summary> - <typeparam name="TKey"></typeparam> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.Id"> - <summary> - Primary key - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.UserId"> - <summary> - User Id for the user who owns this login - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.ClaimType"> - <summary> - Claim type - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim`1.ClaimValue"> - <summary> - Claim value - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin"> - <summary> - Entity type for a user's login (i.e. facebook, google) - </summary> - </member> - <member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1"> - <summary> - Entity type for a user's login (i.e. facebook, google) - </summary> - <typeparam name="TKey"></typeparam> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1.LoginProvider"> - <summary> - The login provider for the login (i.e. facebook, google) - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1.ProviderKey"> - <summary> - Key representing the login for the provider - </summary> - </member> - <member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityUserLogin`1.UserId"> - <summary> - User Id for the user who owns this login - </summary> - </member> - </members> -</doc>
 
 
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,198 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?> -<doc> - <assembly> - <name>Microsoft.AspNet.Identity.Owin</name> - </assembly> - <members> - <member name="T:Microsoft.AspNet.Identity.IdentityExtensions"> - <summary>Extensions making it easier to get the user name/user id claims off of an identity.</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.IdentityExtensions.FindFirstValue(System.Security.Claims.ClaimsIdentity,System.String)"> - <summary>Return the claim value for the first claim with the specified type if it exists, null otherwise.</summary> - <returns>Returns <see cref="T:System.String" />.</returns> - </member> - <member name="M:Microsoft.AspNet.Identity.IdentityExtensions.GetUserId(System.Security.Principal.IIdentity)"> - <summary>Return the user id using the UserIdClaimType.</summary> - <returns>Returns <see cref="T:System.String" />.</returns> - </member> - <member name="M:Microsoft.AspNet.Identity.IdentityExtensions.GetUserName(System.Security.Principal.IIdentity)"> - <summary>Return the user name using the UserNameClaimType.</summary> - <returns>Returns <see cref="T:System.String" />.</returns> - </member> - <member name="T:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager"> - <summary>Owin aware identity manager that adds sign in/sign out and claims functionality</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.#ctor(Microsoft.AspNet.Identity.IdentitySettings,Microsoft.AspNet.Identity.IIdentityStore)"> - <summary>Constructor</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.#ctor(Microsoft.AspNet.Identity.IIdentityStore)"> - <summary>Constructor that uses the default settings</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.Authentication"> - <summary>Authentication APIs (SignIn, SignOut)</summary> - </member> - <member name="T:Microsoft.AspNet.Identity.Owin.AuthenticationManager"> - <summary>Authentication APIs (SignIn/SignOut)</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.#ctor(Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions,Microsoft.AspNet.Identity.IdentityManager)"> - <summary>Constructor</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CheckPasswordAndSignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean,System.Threading.CancellationToken)"> - <summary>Validates that the password matches and then signs the token in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.ConfirmSignInTokenAsync(System.String,System.Threading.CancellationToken)"> - <summary>If the token is found, allows the user to sign in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CreateAndSignInExternalUserAsync(Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)"> - <summary>Create an external user and sign them in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CreateApplicationClaimsIdentity(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim})"> - <summary>Creates a claims identity with the ApplicationAuthenticaitonType, UserNameClaimType and ConfigRole type</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager)"> - <summary>Return the identity associated with the default external authentication type</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.GetUserIdentityClaimsAsync(System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)"> - <summary>Return the claims for a token, which will contain the UserIdClaimType, UserNameClaimType, a claim representing each Role and any claims specified in the UserClaims</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.LinkExternalIdentityAsync(System.Security.Claims.ClaimsIdentity,System.String,System.Threading.CancellationToken)"> - <summary>Try to link the given identity to the specified token</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationManager.Manager"> - <summary>IdentityManager for operations</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationManager.Options"> - <summary>Config</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.RequireTokenConfirmationForSignInAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)"> - <summary>Create a token for the specified user and disables sign in. ConfirmSignInTokenAsync will confirm this token and reenable sign in.</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.SignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean,System.Threading.CancellationToken)"> - <summary>Signs in the active principal with a identity that contains claims set to the result of GetUserIdentityClaims and the specified claims</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.SignInExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.Threading.CancellationToken)"> - <summary>Signs the identity in if the external identity is already linked</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.UpdateUserDisableSignIn(System.String,System.Boolean,System.Threading.CancellationToken)"> - <summary>Set the AllowSignIn flag for a user</summary> - </member> - <member name="T:Microsoft.AspNet.Identity.Owin.IAuthenticationManager"> - <summary>Authentication APIs (SignIn/SignOut)</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CheckPasswordAndSignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean,System.Threading.CancellationToken)"> - <summary>Validates that the password matches and then signs the token in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.ConfirmSignInTokenAsync(System.String,System.Threading.CancellationToken)"> - <summary>If the token is found, allows the user to sign in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CreateAndSignInExternalUserAsync(Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)"> - <summary>Create an external user and sign them in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CreateApplicationClaimsIdentity(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim})"> - <summary>Creates a claims identity with the ApplicationAuthenticaitonType, UserNameClaimType and ConfigRole type</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager)"> - <summary>Return the identity associated with the default external authentication type</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.GetUserIdentityClaimsAsync(System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)"> - <summary>Return the claims for a token, which will contain the UserIdClaimType, UserNameClaimType, a claim representing each Role and any claims specified in the UserClaims</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.LinkExternalIdentityAsync(System.Security.Claims.ClaimsIdentity,System.String,System.Threading.CancellationToken)"> - <summary>Try to link the given identity to the specified token</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.RequireTokenConfirmationForSignInAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)"> - <summary>Require a call to ConfirmSignInToken with the given token before this user can be signed in</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.SignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean,System.Threading.CancellationToken)"> - <summary>Signs in the active principal with a identity that contains claims set to the result of GetUserIdentityClaims and the specified claims</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.SignInExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.Threading.CancellationToken)"> - <summary>Signs the identity in if the external identity is already linked</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.UpdateUserDisableSignIn(System.String,System.Boolean,System.Threading.CancellationToken)"> - <summary>Set the AllowSignIn flag for a user</summary> - </member> - <member name="T:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions"> - <summary>Adds extensions methods related to SignIn using OWIN middleware and the IdentityManager to generate the appropriate user claims</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CheckPasswordAndSignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CheckPasswordAndSignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.ConfirmSignInToken(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.ConfirmSignInTokenAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CreateAndSignInExternalUser(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CreateAndSignInExternalUserAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.GetExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.LinkExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.String)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.LinkExternalIdentityAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.String)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.RequireTokenConfirmationForSignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String,System.String,System.DateTime)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.RequireTokenConfirmationForSignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String,System.String,System.DateTime)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean,System.Threading.CancellationToken)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity)"></member> - <member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInExternalIdentityAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity)"></member> - <member name="T:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions"> - <summary>Configuration for the Identity system</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.#ctor"> - <summary>Default constructor which uses the built in default options</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ApplicationAuthenticationType"> - <summary>The AuthenticationType used in the UseSignInCookies extension method for the active signed in identity.</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ClaimsIssuer"> - <summary>Issuer used for the claims generated</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ExternalAuthenticationType"> - <summary>The AuthenticationType used by the UseSignInCookies extension method for the external signed in identity.</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.LoginPath"> - <summary>Path to the login page in the app</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.LogoutPath"> - <summary>Path to the logout page in the app</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.RoleClaimType"> - <summary>Claim type used for role claims</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.UserIdClaimType"> - <summary>Claim type used for the user id</summary> - </member> - <member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.UserNameClaimType"> - <summary>Claim type used for the user name</summary> - </member> - <member name="T:Microsoft.AspNet.Identity.Owin.IdentitySettingsExtensions"> - <summary>Represents the extensions used in identity settings.</summary> - </member> - <member name="M:Microsoft.AspNet.Identity.Owin.IdentitySettingsExtensions.GetAuthenticationOptions(Microsoft.AspNet.Identity.IdentitySettings)"> - <summary>Returns the authentication options for the identity.</summary> - <returns>The authentication options for the identity.</returns> - <param name="settings">The identity settings.</param> - </member> - <member name="T:Microsoft.Owin.Security.AuthenticationManagerExtensions"> - <summary>Extensions methods on IAuthenticationManager that add methods for using the default Application and External authentication type constants</summary> - </member> - <member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalAuthenticationTypes(Microsoft.Owin.Security.IAuthenticationManager)"> - <summary>Return the authentication types which are considered external because they have captions</summary> - </member> - <member name="T:Owin.AppBuilderExtensions"> - <summary>Extensions off of IAppBuilder to make it easier to configure the SignInCookies</summary> - </member> - <member name="M:Owin.AppBuilderExtensions.UseExternalSignInCookie(Owin.IAppBuilder)"> - <summary>Configure the app to use owin middleware based cookie authentication for external identities</summary> - </member> - <member name="M:Owin.AppBuilderExtensions.UseExternalSignInCookie(Owin.IAppBuilder,System.String)"> - <summary>Configure the app to use owin middleware based cookie authentication for external identities</summary> - </member> - <member name="M:Owin.AppBuilderExtensions.UseOAuthBearerTokens(Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String)"> - <summary>Configure the app to use owin middleware based oauth bearer tokens</summary> - </member> - <member name="M:Owin.AppBuilderExtensions.UseSignInCookies(Owin.IAppBuilder)"> - <summary>Use application and external sign in cookies for the app</summary> - </member> - <member name="M:Owin.AppBuilderExtensions.UseSignInCookies(Owin.IAppBuilder,Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions)"> - <summary>Configure the app to use owin middleware based cookie authentication for the active identity and external identities</summary> - </member> - </members> -</doc> \ No newline at end of file
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?> -<doc> - <assembly> - <name>Microsoft.Web.Infrastructure</name> - </assembly> - <members> - <member name="T:Microsoft.Web.Infrastructure.HttpContextHelper"></member> - <member name="M:Microsoft.Web.Infrastructure.HttpContextHelper.ExecuteInNullContext(System.Action)"></member> - <member name="T:Microsoft.Web.Infrastructure.InfrastructureHelper"></member> - <member name="M:Microsoft.Web.Infrastructure.InfrastructureHelper.IsCodeDomDefinedExtension(System.String)"></member> - <member name="M:Microsoft.Web.Infrastructure.InfrastructureHelper.UnloadAppDomain"></member> - <member name="T:Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility"></member> - <member name="M:Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility.RegisterModule(System.Type)"></member> - <member name="T:Microsoft.Web.Infrastructure.DynamicValidationHelper.ValidationUtility"></member> - <member name="M:Microsoft.Web.Infrastructure.DynamicValidationHelper.ValidationUtility.EnableDynamicValidation(System.Web.HttpContext)"></member> - <member name="M:Microsoft.Web.Infrastructure.DynamicValidationHelper.ValidationUtility.GetUnvalidatedCollections(System.Web.HttpContext,System.Func`1@,System.Void)"></member> - <member name="M:Microsoft.Web.Infrastructure.DynamicValidationHelper.ValidationUtility.IsValidationEnabled(System.Web.HttpContext)"></member> - </members> -</doc> \ No newline at end of file
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
 
 
Change 1 of 1 Show Entire File NexportWebApiDemo/​bin/​NexportWebApiDemo.dll.config Stacked
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?> -<!-- - For more information on how to configure your ASP.NET application, please visit - http://go.microsoft.com/fwlink/?LinkId=301880 - --> -<configuration> - <configSections> - - <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> - <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections> - <connectionStrings> - <add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-NexportWebApiDemo-20140225031045.mdf;Initial Catalog=aspnet-NexportWebApiDemo-20140225031045;Integrated Security=True" providerName="System.Data.SqlClient" /> - </connectionStrings> - <appSettings> - <add key="webpages:Version" value="3.0.0.0" /> - <add key="webpages:Enabled" value="false" /> - <add key="ClientValidationEnabled" value="true" /> - <add key="UnobtrusiveJavaScriptEnabled" value="true" /> - </appSettings> - <system.web> - <authentication mode="None" /> - <compilation debug="true" targetFramework="4.5" /> - <httpRuntime targetFramework="4.5" /> - </system.web> - <system.webServer> - <modules> - <remove name="FormsAuthenticationModule" /> - </modules> - <handlers> - <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> - <remove name="OPTIONSVerbHandler" /> - <remove name="TRACEVerbHandler" /> - <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> - </handlers></system.webServer> - <runtime> - <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> - <dependentAssembly> - <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> - <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> - <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> - <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> - <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="Microsoft.AspNet.Identity.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> - </dependentAssembly> - </assemblyBinding> - </runtime> - <entityFramework> - <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> - <parameters> - <parameter value="v11.0" /> - </parameters> - </defaultConnectionFactory> - <providers> - <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> - </providers> - </entityFramework> -</configuration> \ No newline at end of file
 
 
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
(No changes)
(No changes)
(No changes)
 
 
This file's diff was not loaded because this changeset is very large. Load changes
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
 
 
This file's diff was not loaded because this changeset is very large. Load changes
(No changes)
(No changes)
(No changes)