Microsoft.Owin.Security.OAuth.XML
107 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security.OAuth</name>
</assembly>
<members>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestCustomExtension">
<summary>
Data object used by TokenEndpointRequest which contains parameter information when the "grant_type" is unrecognized.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestCustomExtension.Parameters">
<summary>
The parameter information when the "grant_type" is unrecognized.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestRefreshToken">
<summary>
Data object used by TokenEndpointRequest when the "grant_type" parameter is "refresh_token".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestRefreshToken.RefreshToken">
<summary>
The value passed to the Token endpoint in the "refresh_token" parameter
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestRefreshToken.Scope">
<summary>
The value passed to the Token endpoint in the "scope" parameter
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestAuthorizationCode">
<summary>
Data object used by TokenEndpointRequest when the "grant_type" is "authorization_code".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestAuthorizationCode.Code">
<summary>
The value passed to the Token endpoint in the "code" parameter
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestAuthorizationCode.RedirectUri">
<summary>
The value passed to the Token endpoint in the "redirect_uri" parameter. This MUST be provided by the caller
if the original visit to the Authorize endpoint contained a "redirect_uri" parameter.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest">
<summary>
Data object representing the information contained in the query string of an Authorize endpoint request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.#ctor(Microsoft.Owin.IReadableStringCollection)">
<summary>
Creates a new instance populated with values from the query string parameters.
</summary>
<param name="parameters">Query string parameters from a request.</param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.ContainsGrantType(System.String)">
<summary>
True if the "response_type" query string contains the passed responseType.
See also, http://openid.net/specs/oauth-v2-multiple-response-types-1_0.html
</summary>
<param name="responseType">The responseType that is expected within the "response_type" query string</param>
<returns>True if the "response_type" query string contains the passed responseType.</returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.ResponseType">
<summary>
The "response_type" query string parameter of the Authorize request. Known values are "code" and "token".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.ResponseMode">
<summary>
The "response_mode" query string parameter of the Authorize request. Known values are "query", "fragment" and "form_post"
See also, http://openid.net/specs/oauth-v2-form-post-response-mode-1_0.html
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.ClientId">
<summary>
The "client_id" query string parameter of the Authorize request.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.RedirectUri">
<summary>
The "redirect_uri" query string parameter of the Authorize request. May be absent if the server should use the
redirect uri known to be registered to the client id.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.Scope">
<summary>
The "scope" query string parameter of the Authorize request. May be absent if the server should use default scopes.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.State">
<summary>
The "scope" query string parameter of the Authorize request. May be absent if the client does not require state to be
included when returning to the RedirectUri.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.IsAuthorizationCodeGrantType">
<summary>
True if the "response_type" query string parameter is "code".
See also, http://tools.ietf.org/html/rfc6749#section-4.1.1
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest.IsImplicitGrantType">
<summary>
True if the "response_type" query string parameter is "token".
See also, http://tools.ietf.org/html/rfc6749#section-4.2.1
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest">
<summary>
Data object representing the information contained in form encoded body of a Token endpoint request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.#ctor(Microsoft.Owin.IReadableStringCollection)">
<summary>
Creates a new instance populated with values from the form encoded body parameters.
</summary>
<param name="parameters">Form encoded body parameters from a request.</param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.Parameters">
<summary>
The form encoded body parameters of the Token endpoint request
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.GrantType">
<summary>
The "grant_type" parameter of the Token endpoint request. This parameter is required.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.ClientId">
<summary>
The "client_id" parameter of the Token endpoint request. This parameter is optional. It might not
be present if the request is authenticated in a different way, for example, by using basic authentication
credentials.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.AuthorizationCodeGrant">
<summary>
Data object available when the "grant_type" is "authorization_code".
See also http://tools.ietf.org/html/rfc6749#section-4.1.3
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.ClientCredentialsGrant">
<summary>
Data object available when the "grant_type" is "client_credentials".
See also http://tools.ietf.org/html/rfc6749#section-4.4.2
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.RefreshTokenGrant">
<summary>
Data object available when the "grant_type" is "refresh_token".
See also http://tools.ietf.org/html/rfc6749#section-6
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.ResourceOwnerPasswordCredentialsGrant">
<summary>
Data object available when the "grant_type" is "password".
See also http://tools.ietf.org/html/rfc6749#section-4.3.2
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.CustomExtensionGrant">
<summary>
Data object available when the "grant_type" is unrecognized.
See also http://tools.ietf.org/html/rfc6749#section-4.5
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.IsAuthorizationCodeGrantType">
<summary>
True when the "grant_type" is "authorization_code".
See also http://tools.ietf.org/html/rfc6749#section-4.1.3
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.IsClientCredentialsGrantType">
<summary>
True when the "grant_type" is "client_credentials".
See also http://tools.ietf.org/html/rfc6749#section-4.4.2
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.IsRefreshTokenGrantType">
<summary>
True when the "grant_type" is "refresh_token".
See also http://tools.ietf.org/html/rfc6749#section-6
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.IsResourceOwnerPasswordCredentialsGrantType">
<summary>
True when the "grant_type" is "password".
See also http://tools.ietf.org/html/rfc6749#section-4.3.2
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest.IsCustomExtensionGrantType">
<summary>
True when the "grant_type" is unrecognized.
See also http://tools.ietf.org/html/rfc6749#section-4.5
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestClientCredentials">
<summary>
Data object used by TokenEndpointRequest when the "grant_type" is "client_credentials".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestClientCredentials.Scope">
<summary>
The value passed to the Token endpoint in the "scope" parameter
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestResourceOwnerPasswordCredentials">
<summary>
Data object used by TokenEndpointRequest when the "grant_type" is "password".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestResourceOwnerPasswordCredentials.UserName">
<summary>
The value passed to the Token endpoint in the "username" parameter
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestResourceOwnerPasswordCredentials.Password">
<summary>
The value passed to the Token endpoint in the "password" parameter
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequestResourceOwnerPasswordCredentials.Scope">
<summary>
The value passed to the Token endpoint in the "scope" parameter
</summary>
</member>
<member name="T:Owin.OAuthAuthorizationServerExtensions">
<summary>
Extension methods to add Authorization Server capabilities to an OWIN pipeline
</summary>
</member>
<member name="M:Owin.OAuthAuthorizationServerExtensions.UseOAuthAuthorizationServer(Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions)">
<summary>
Adds OAuth2 Authorization Server capabilities to an OWIN web application. This middleware
performs the request processing for the Authorize and Token endpoints defined by the OAuth2 specification.
See also http://tools.ietf.org/html/rfc6749
</summary>
<param name="app">The web application builder</param>
<param name="options">Options which control the behavior of the Authorization Server.</param>
<returns>The application builder</returns>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions">
<summary>
Options class provides information needed to control Authorization Server middleware behavior
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.#ctor">
<summary>
Creates an instance of authorization server options with default values.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AuthorizeEndpointPath">
<summary>
The request path where client applications will redirect the user-agent in order to
obtain user consent to issue a token. Must begin with a leading slash, like "/Authorize".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.TokenEndpointPath">
<summary>
The request path client applications communicate with directly as part of the OAuth protocol.
Must begin with a leading slash, like "/Token". If the client is issued a client_secret, it must
be provided to this endpoint.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.Provider">
<summary>
The object provided by the application to process events raised by the Authorization Server middleware.
The application may implement the interface fully, or it may create an instance of OAuthAuthorizationServerProvider
and assign delegates only to the events it wants to process.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AuthorizationCodeFormat">
<summary>
The data format used to protect and unprotect the information contained in the authorization code.
If not provided by the application the default data protection provider depends on the host server.
The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted
servers will use DPAPI data protection.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AccessTokenFormat">
<summary>
The data format used to protect the information contained in the access token.
If not provided by the application the default data protection provider depends on the host server.
The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted
servers will use DPAPI data protection. If a different access token
provider or format is assigned, a compatible instance must be assigned to the OAuthBearerAuthenticationOptions.AccessTokenProvider
or OAuthBearerAuthenticationOptions.AccessTokenFormat property of the resource server.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.RefreshTokenFormat">
<summary>
The data format used to protect and unprotect the information contained in the refresh token.
If not provided by the application the default data protection provider depends on the host server.
The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted
servers will use DPAPI data protection.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AuthorizationCodeExpireTimeSpan">
<summary>
The period of time the authorization code remains valid after being issued. The default is five minutes.
This time span must also take into account clock synchronization between servers in a web farm, so a very
brief value could result in unexpectedly expired tokens.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AccessTokenExpireTimeSpan">
<summary>
The period of time the access token remains valid after being issued. The default is twenty minutes.
The client application is expected to refresh or acquire a new access token after the token has expired.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AuthorizationCodeProvider">
<summary>
Produces a single-use authorization code to return to the client application. For the OAuth server to be secure the
application MUST provide an instance for AuthorizationCodeProvider where the token produced by the OnCreate or OnCreateAsync event
is considered valid for only one call to OnReceive or OnReceiveAsync.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AccessTokenProvider">
<summary>
Produces a bearer token the client application will typically be providing to resource server as the authorization bearer
http request header. If not provided the token produced on the server's default data protection. If a different access token
provider or format is assigned, a compatible instance must be assigned to the OAuthBearerAuthenticationOptions.AccessTokenProvider
or OAuthBearerAuthenticationOptions.AccessTokenFormat property of the resource server.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.RefreshTokenProvider">
<summary>
Produces a refresh token which may be used to produce a new access token when needed. If not provided the authorization server will
not return refresh tokens from the /Token endpoint.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.ApplicationCanDisplayErrors">
<summary>
Set to true if the web application is able to render error messages on the /Authorize endpoint. This is only needed for cases where
the browser is not redirected back to the client application, for example, when the client_id or redirect_uri are incorrect. The
/Authorize endpoint should expect to see "oauth.Error", "oauth.ErrorDescription", "oauth.ErrorUri" properties added to the owin environment.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.SystemClock">
<summary>
Used to know what the current clock time is when calculating or validating token expiration. When not assigned default is based on
DateTimeOffset.UtcNow. This is typically needed only for unit testing.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.AllowInsecureHttp">
<summary>
True to allow authorize and token requests to arrive on http URI addresses, and to allow incoming
redirect_uri authorize request parameter to have http URI addresses.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions.FormPostEndpoint">
<summary>
Endpoint responsible for Form Post Response Mode
See also, http://openid.net/specs/oauth-v2-form-post-response-mode-1_0.html
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerMiddleware">
<summary>
Authorization Server middleware component which is added to an OWIN pipeline. This class is not
created by application code directly, instead it is added by calling the the IAppBuilder UseOAuthAuthorizationServer
extension method.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions)">
<summary>
Authorization Server middleware component which is added to an OWIN pipeline. This constructor is not
called by application code directly, instead it is added by calling the the IAppBuilder UseOAuthAuthorizationServer
extension method.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerMiddleware.CreateHandler">
<summary>
Called by the AuthenticationMiddleware base class to create a per-request handler.
</summary>
<returns>A new instance of the request handler</returns>
</member>
<member name="T:Owin.OAuthBearerAuthenticationExtensions">
<summary>
Extension methods to add OAuth Bearer authentication capabilities to an OWIN application pipeline
</summary>
</member>
<member name="M:Owin.OAuthBearerAuthenticationExtensions.UseOAuthBearerAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions)">
<summary>
Adds Bearer token processing to an OWIN application pipeline. This middleware understands appropriately
formatted and secured tokens which appear in the request header. If the Options.AuthenticationMode is Active, the
claims within the bearer token are added to the current request's IPrincipal User. If the Options.AuthenticationMode
is Passive, then the current request is not modified, but IAuthenticationManager AuthenticateAsync may be used at
any time to obtain the claims from the request's bearer token.
See also http://tools.ietf.org/html/rfc6749
</summary>
<param name="app">The web application builder</param>
<param name="options">Options which control the processing of the bearer header.</param>
<returns>The application builder</returns>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationMiddleware">
<summary>
Bearer authentication middleware component which is added to an OWIN pipeline. This class is not
created by application code directly, instead it is added by calling the the IAppBuilder UseOAuthBearerAuthentication
extension method.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions)">
<summary>
Bearer authentication component which is added to an OWIN pipeline. This constructor is not
called by application code directly, instead it is added by calling the the IAppBuilder UseOAuthBearerAuthentication
extension method.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationMiddleware.CreateHandler">
<summary>
Called by the AuthenticationMiddleware base class to create a per-request handler.
</summary>
<returns>A new instance of the request handler</returns>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions">
<summary>
Options class provides information needed to control Bearer Authentication middleware behavior
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.#ctor">
<summary>
Creates an instance of bearer authentication options with default values.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.Realm">
<summary>
Determines what realm value is included when the bearer middleware adds a response header to an unauthorized request.
If not assigned, the response header does not have a realm.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.Challenge">
<summary>
Specifies the full challenge to send to the client, and should start with "Bearer". If a challenge is provided then the
Realm property is ignored. If no challenge is specified then one is created using "Bearer" and the value of the Realm
property.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.Provider">
<summary>
The object provided by the application to process events raised by the bearer authentication middleware.
The application may implement the interface fully, or it may create an instance of OAuthBearerAuthenticationProvider
and assign delegates only to the events it wants to process.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.AccessTokenFormat">
<summary>
The data format used to un-protect the information contained in the access token.
If not provided by the application the default data protection provider depends on the host server.
The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted
servers will use DPAPI data protection. If a different access token
provider or format is assigned, a compatible instance must be assigned to the OAuthAuthorizationServerOptions.AccessTokenProvider
and OAuthAuthorizationServerOptions.AccessTokenFormat of the authorization server.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.AccessTokenProvider">
<summary>
Receives the bearer token the client application will be providing to web application. If not provided the token
produced on the server's default data protection by using the AccessTokenFormat. If a different access token
provider or format is assigned, a compatible instance must be assigned to the OAuthAuthorizationServerOptions.AccessTokenProvider
and OAuthAuthorizationServerOptions.AccessTokenFormat of the authorization server.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions.SystemClock">
<summary>
Used to know what the current clock time is when calculating or validating token expiration. When not assigned default is based on
DateTimeOffset.UtcNow. This is typically needed only for unit testing.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthDefaults">
<summary>
Default values used by authorization server and bearer authentication.
</summary>
</member>
<member name="F:Microsoft.Owin.Security.OAuth.OAuthDefaults.AuthenticationType">
<summary>
Default value for AuthenticationType property in the OAuthBearerAuthenticationOptions and
OAuthAuthorizationServerOptions.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext">
<summary>
Provides context information used at the end of a token-endpoint-request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.AuthenticationTicket,Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="ticket"></param>
<param name="tokenEndpointRequest"></param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.Issue(System.Security.Claims.ClaimsIdentity,Microsoft.Owin.Security.AuthenticationProperties)">
<summary>
Issues the token.
</summary>
<param name="identity"></param>
<param name="properties"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.Identity">
<summary>
Gets the identity of the resource owner.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.Properties">
<summary>
Dictionary containing the state of the authentication session.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.AccessToken">
<summary>
The issued Access-Token
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.TokenEndpointRequest">
<summary>
Gets information about the token endpoint request.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.TokenIssued">
<summary>
Gets whether or not the token should be issued.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext.AdditionalResponseParameters">
<summary>
Enables additional values to be appended to the token response.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.BaseValidatingClientContext">
<summary>
Base class used for certain event contexts
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1">
<summary>
Base class used for certain event contexts
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.#ctor(Microsoft.Owin.IOwinContext,`0)">
<summary>
Initializes base class used for certain event contexts
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.Validated">
<summary>
Marks this context as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling.
</summary>
<returns>True if the validation has taken effect.</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.Rejected">
<summary>
Marks this context as not validated by the application. IsValidated and HasError become false as a result of calling.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.SetError(System.String)">
<summary>
Marks this context as not validated by the application and assigns various error information properties.
HasError becomes true and IsValidated becomes false as a result of calling.
</summary>
<param name="error">Assigned to the Error property</param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.SetError(System.String,System.String)">
<summary>
Marks this context as not validated by the application and assigns various error information properties.
HasError becomes true and IsValidated becomes false as a result of calling.
</summary>
<param name="error">Assigned to the Error property</param>
<param name="errorDescription">Assigned to the ErrorDescription property</param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.SetError(System.String,System.String,System.String)">
<summary>
Marks this context as not validated by the application and assigns various error information properties.
HasError becomes true and IsValidated becomes false as a result of calling.
</summary>
<param name="error">Assigned to the Error property</param>
<param name="errorDescription">Assigned to the ErrorDescription property</param>
<param name="errorUri">Assigned to the ErrorUri property</param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.IsValidated">
<summary>
True if application code has called any of the Validate methods on this context.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.HasError">
<summary>
True if application code has called any of the SetError methods on this context.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.Error">
<summary>
The error argument provided when SetError was called on this context. This is eventually
returned to the client app as the OAuth "error" parameter.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.ErrorDescription">
<summary>
The optional errorDescription argument provided when SetError was called on this context. This is eventually
returned to the client app as the OAuth "error_description" parameter.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingContext`1.ErrorUri">
<summary>
The optional errorUri argument provided when SetError was called on this context. This is eventually
returned to the client app as the OAuth "error_uri" parameter.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingClientContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String)">
<summary>
Initializes base class used for certain event contexts
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingClientContext.ClientId">
<summary>
The "client_id" parameter for the current request. The Authorization Server application is responsible for
validating this value identifies a registered client.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.BaseValidatingTicketContext`1">
<summary>
Base class used for certain event contexts
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingTicketContext`1.#ctor(Microsoft.Owin.IOwinContext,`0,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Initializes base class used for certain event contexts
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingTicketContext`1.Validated(Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Replaces the ticket information on this context and marks it as as validated by the application.
IsValidated becomes true and HasError becomes false as a result of calling.
</summary>
<param name="ticket">Assigned to the Ticket property</param>
<returns>True if the validation has taken effect.</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.BaseValidatingTicketContext`1.Validated(System.Security.Claims.ClaimsIdentity)">
<summary>
Alters the ticket information on this context and marks it as as validated by the application.
IsValidated becomes true and HasError becomes false as a result of calling.
</summary>
<param name="identity">Assigned to the Ticket.Identity property</param>
<returns>True if the validation has taken effect.</returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.BaseValidatingTicketContext`1.Ticket">
<summary>
Contains the identity and properties for the application to authenticate. If the Validated method
is invoked with an AuthenticationTicket or ClaimsIdentity argument, that new value is assigned to
this property in addition to changing IsValidated to true.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext">
<summary>
Provides context information when processing an Authorization Response
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.AuthenticationTicket,Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="ticket"></param>
<param name="tokenEndpointRequest"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.Identity">
<summary>
Gets the identity of the resource owner.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.Properties">
<summary>
Dictionary containing the state of the authentication session.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.AuthorizeEndpointRequest">
<summary>
Gets information about the authorize endpoint request.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.AdditionalResponseParameters">
<summary>
Enables additional values to be appended to the token response.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.AccessToken">
<summary>
The serialized Access-Token. Depending on the flow, it can be null.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext.AuthorizationCode">
<summary>
The created Authorization-Code. Depending on the flow, it can be null.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthAuthorizeEndpointContext">
<summary>
An event raised after the Authorization Server has processed the request, but before it is passed on to the web application.
Calling RequestCompleted will prevent the request from passing on to the web application.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizeEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest)">
<summary>
Creates an instance of this context
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizeEndpointContext.AuthorizeRequest">
<summary>
Gets OAuth authorization request data.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider">
<summary>
Interface for OAuthAuthorizationServerOptions.Provider property used by Authorization
Server to communicate with the web application while processing requests.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.MatchEndpoint(Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext)">
<summary>
Called to determine if an incoming request is treated as an Authorize or Token
endpoint. If Options.AuthorizeEndpointPath or Options.TokenEndpointPath
are assigned values, then handling this event is optional and context.IsAuthorizeEndpoint and context.IsTokenEndpoint
will already be true if the request path matches.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.ValidateClientRedirectUri(Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext)">
<summary>
Called to validate that the context.ClientId is a registered "client_id", and that the context.RedirectUri a "redirect_uri"
registered for that client. This only occurs when processing the Authorize endpoint. The application MUST implement this
call, and it MUST validate both of those factors before calling context.Validated. If the context.Validated method is called
with a given redirectUri parameter, then IsValidated will only become true if the incoming redirect URI matches the given redirect URI.
If context.Validated is not called the request will not proceed further.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.ValidateClientAuthentication(Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext)">
<summary>
Called to validate that the origin of the request is a registered "client_id", and that the correct credentials for that client are
present on the request. If the web application accepts Basic authentication credentials,
context.TryGetBasicCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request header. If the web
application accepts "client_id" and "client_secret" as form encoded POST parameters,
context.TryGetFormCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request body.
If context.Validated is not called the request will not proceed further.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.ValidateAuthorizeRequest(Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext)">
<summary>
Called for each request to the Authorize endpoint to determine if the request is valid and should continue.
The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with
validated client redirect URI, should continue processing. An application may add any additional constraints.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.ValidateTokenRequest(Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext)">
<summary>
Called for each request to the Token endpoint to determine if the request is valid and should continue.
The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with
validated client credentials, should continue processing. An application may add any additional constraints.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.GrantAuthorizationCode(Microsoft.Owin.Security.OAuth.OAuthGrantAuthorizationCodeContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "authorization_code". This occurs after the Authorize
endpoint as redirected the user-agent back to the client with a "code" parameter, and the client is exchanging that for an "access_token".
The claims and properties
associated with the authorization code are present in the context.Ticket. The application must call context.Validated to instruct the Authorization
Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different
AuthenticationTicket or ClaimsIdentity in order to control which information flows from authorization code to access token.
The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the authorization code to
the access token unmodified.
See also http://tools.ietf.org/html/rfc6749#section-4.1.3
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.GrantRefreshToken(Microsoft.Owin.Security.OAuth.OAuthGrantRefreshTokenContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "refresh_token". This occurs if your application has issued a "refresh_token"
along with the "access_token", and the client is attempting to use the "refresh_token" to acquire a new "access_token", and possibly a new "refresh_token".
To issue a refresh token the an Options.RefreshTokenProvider must be assigned to create the value which is returned. The claims and properties
associated with the refresh token are present in the context.Ticket. The application must call context.Validated to instruct the
Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may
be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from the refresh token to
the access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the refresh token to
the access token unmodified.
See also http://tools.ietf.org/html/rfc6749#section-6
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.GrantResourceOwnerCredentials(Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "password". This occurs when the user has provided name and password
credentials directly into the client application's user interface, and the client application is using those to acquire an "access_token" and
optional "refresh_token". If the web application supports the
resource owner credentials grant type it must validate the context.Username and context.Password as appropriate. To issue an
access token the context.Validated must be called with a new ticket containing the claims about the resource owner which should be associated
with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. .
The default behavior is to reject this grant type.
See also http://tools.ietf.org/html/rfc6749#section-4.3.2
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.GrantClientCredentials(Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "client_credentials". This occurs when a registered client
application wishes to acquire an "access_token" to interact with protected resources on it's own behalf, rather than on behalf of an authenticated user.
If the web application supports the client credentials it may assume the context.ClientId has been validated by the ValidateClientAuthentication call.
To issue an access token the context.Validated must be called with a new ticket containing the claims about the client application which should be associated
with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers.
The default behavior is to reject this grant type.
See also http://tools.ietf.org/html/rfc6749#section-4.4.2
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.GrantCustomExtension(Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext)">
<summary>
Called when a request to the Token andpoint arrives with a "grant_type" of any other value. If the application supports custom grant types
it is entirely responsible for determining if the request should result in an access_token. If context.Validated is called with ticket
information the response body is produced in the same way as the other standard grant types. If additional response parameters must be
included they may be added in the final TokenEndpoint call.
See also http://tools.ietf.org/html/rfc6749#section-4.5
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.AuthorizeEndpoint(Microsoft.Owin.Security.OAuth.OAuthAuthorizeEndpointContext)">
<summary>
Called at the final stage of an incoming Authorize endpoint request before the execution continues on to the web application component
responsible for producing the html response. Anything present in the OWIN pipeline following the Authorization Server may produce the
response for the Authorize page. If running on IIS any ASP.NET technology running on the server may produce the response for the
Authorize page. If the web application wishes to produce the response directly in the AuthorizeEndpoint call it may write to the
context.Response directly and should call context.RequestCompleted to stop other handlers from executing. If the web application wishes
to grant the authorization directly in the AuthorizeEndpoint call it cay call context.OwinContext.Authentication.SignIn with the
appropriate ClaimsIdentity and should call context.RequestCompleted to stop other handlers from executing.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.TokenEndpoint(Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext)">
<summary>
Called at the final stage of a successful Token endpoint request. An application may implement this call in order to do any final
modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional
response parameters to the Token endpoint's json response body.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.AuthorizationEndpointResponse(Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext)">
<summary>
Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the
token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow.
An application may implement this call in order to do any final modification of the claims being used
to issue access or refresh tokens. This call may also be used in order to add additional
response parameters to the authorization endpoint's response.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider.TokenEndpointResponse(Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext)">
<summary>
Called before the TokenEndpoint redirects its response to the caller.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider">
<summary>
Default implementation of IOAuthAuthorizationServerProvider used by Authorization
Server to communicate with the web application while processing requests. OAuthAuthorizationServerProvider provides some default behavior,
may be used as a virtual base class, and offers delegate properties which may be used to
handle individual calls without declaring a new class type.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.#ctor">
<summary>
Creates new instance of default provider behavior
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.MatchEndpoint(Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext)">
<summary>
Called to determine if an incoming request is treated as an Authorize or Token
endpoint. If Options.AuthorizeEndpointPath or Options.TokenEndpointPath
are assigned values, then handling this event is optional and context.IsAuthorizeEndpoint and context.IsTokenEndpoint
will already be true if the request path matches.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.ValidateClientRedirectUri(Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext)">
<summary>
Called to validate that the context.ClientId is a registered "client_id", and that the context.RedirectUri a "redirect_uri"
registered for that client. This only occurs when processing the Authorize endpoint. The application MUST implement this
call, and it MUST validate both of those factors before calling context.Validated. If the context.Validated method is called
with a given redirectUri parameter, then IsValidated will only become true if the incoming redirect URI matches the given redirect URI.
If context.Validated is not called the request will not proceed further.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.ValidateClientAuthentication(Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext)">
<summary>
Called to validate that the origin of the request is a registered "client_id", and that the correct credentials for that client are
present on the request. If the web application accepts Basic authentication credentials,
context.TryGetBasicCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request header. If the web
application accepts "client_id" and "client_secret" as form encoded POST parameters,
context.TryGetFormCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request body.
If context.Validated is not called the request will not proceed further.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.ValidateAuthorizeRequest(Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext)">
<summary>
Called for each request to the Authorize endpoint to determine if the request is valid and should continue.
The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with
validated client redirect URI, should continue processing. An application may add any additional constraints.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.ValidateTokenRequest(Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext)">
<summary>
Called for each request to the Token endpoint to determine if the request is valid and should continue.
The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with
validated client credentials, should continue processing. An application may add any additional constraints.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.GrantAuthorizationCode(Microsoft.Owin.Security.OAuth.OAuthGrantAuthorizationCodeContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "authorization_code". This occurs after the Authorize
endpoint as redirected the user-agent back to the client with a "code" parameter, and the client is exchanging that for an "access_token".
The claims and properties
associated with the authorization code are present in the context.Ticket. The application must call context.Validated to instruct the Authorization
Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different
AuthenticationTicket or ClaimsIdentity in order to control which information flows from authorization code to access token.
The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the authorization code to
the access token unmodified.
See also http://tools.ietf.org/html/rfc6749#section-4.1.3
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.GrantRefreshToken(Microsoft.Owin.Security.OAuth.OAuthGrantRefreshTokenContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "refresh_token". This occurs if your application has issued a "refresh_token"
along with the "access_token", and the client is attempting to use the "refresh_token" to acquire a new "access_token", and possibly a new "refresh_token".
To issue a refresh token the an Options.RefreshTokenProvider must be assigned to create the value which is returned. The claims and properties
associated with the refresh token are present in the context.Ticket. The application must call context.Validated to instruct the
Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may
be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from the refresh token to
the access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the refresh token to
the access token unmodified.
See also http://tools.ietf.org/html/rfc6749#section-6
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.GrantResourceOwnerCredentials(Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "password". This occurs when the user has provided name and password
credentials directly into the client application's user interface, and the client application is using those to acquire an "access_token" and
optional "refresh_token". If the web application supports the
resource owner credentials grant type it must validate the context.Username and context.Password as appropriate. To issue an
access token the context.Validated must be called with a new ticket containing the claims about the resource owner which should be associated
with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers.
The default behavior is to reject this grant type.
See also http://tools.ietf.org/html/rfc6749#section-4.3.2
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.GrantClientCredentials(Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "client_credentials". This occurs when a registered client
application wishes to acquire an "access_token" to interact with protected resources on it's own behalf, rather than on behalf of an authenticated user.
If the web application supports the client credentials it may assume the context.ClientId has been validated by the ValidateClientAuthentication call.
To issue an access token the context.Validated must be called with a new ticket containing the claims about the client application which should be associated
with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers.
The default behavior is to reject this grant type.
See also http://tools.ietf.org/html/rfc6749#section-4.4.2
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.GrantCustomExtension(Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext)">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of any other value. If the application supports custom grant types
it is entirely responsible for determining if the request should result in an access_token. If context.Validated is called with ticket
information the response body is produced in the same way as the other standard grant types. If additional response parameters must be
included they may be added in the final TokenEndpoint call.
See also http://tools.ietf.org/html/rfc6749#section-4.5
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.AuthorizeEndpoint(Microsoft.Owin.Security.OAuth.OAuthAuthorizeEndpointContext)">
<summary>
Called at the final stage of an incoming Authorize endpoint request before the execution continues on to the web application component
responsible for producing the html response. Anything present in the OWIN pipeline following the Authorization Server may produce the
response for the Authorize page. If running on IIS any ASP.NET technology running on the server may produce the response for the
Authorize page. If the web application wishes to produce the response directly in the AuthorizeEndpoint call it may write to the
context.Response directly and should call context.RequestCompleted to stop other handlers from executing. If the web application wishes
to grant the authorization directly in the AuthorizeEndpoint call it cay call context.OwinContext.Authentication.SignIn with the
appropriate ClaimsIdentity and should call context.RequestCompleted to stop other handlers from executing.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.TokenEndpoint(Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext)">
<summary>
Called at the final stage of a successful Token endpoint request. An application may implement this call in order to do any final
modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional
response parameters to the Token endpoint's json response body.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.AuthorizationEndpointResponse(Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext)">
<summary>
Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the
token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow.
An application may implement this call in order to do any final modification of the claims being used
to issue access or refresh tokens. This call may also be used in order to add additional
response parameters to the authorization endpoint's response.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.TokenEndpointResponse(Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext)">
<summary>
Called before the TokenEndpoint redirects its response to the caller.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnMatchEndpoint">
<summary>
Called to determine if an incoming request is treated as an Authorize or Token
endpoint. If Options.AuthorizeEndpointPath or Options.TokenEndpointPath
are assigned values, then handling this event is optional and context.IsAuthorizeEndpoint and context.IsTokenEndpoint
will already be true if the request path matches.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnValidateClientRedirectUri">
<summary>
Called to validate that the context.ClientId is a registered "client_id", and that the context.RedirectUri a "redirect_uri"
registered for that client. This only occurs when processing the Authorize endpoint. The application MUST implement this
call, and it MUST validate both of those factors before calling context.Validated. If the context.Validated method is called
with a given redirectUri parameter, then IsValidated will only become true if the incoming redirect URI matches the given redirect URI.
If context.Validated is not called the request will not proceed further.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnValidateClientAuthentication">
<summary>
Called to validate that the origin of the request is a registered "client_id", and that the correct credentials for that client are
present on the request. If the web application accepts Basic authentication credentials,
context.TryGetBasicCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request header. If the web
application accepts "client_id" and "client_secret" as form encoded POST parameters,
context.TryGetFormCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request body.
If context.Validated is not called the request will not proceed further.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnValidateAuthorizeRequest">
<summary>
Called for each request to the Authorize endpoint to determine if the request is valid and should continue.
The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with
validated client redirect URI, should continue processing. An application may add any additional constraints.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnValidateTokenRequest">
<summary>
Called for each request to the Token endpoint to determine if the request is valid and should continue.
The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with
validated client credentials, should continue processing. An application may add any additional constraints.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnGrantAuthorizationCode">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "authorization_code". This occurs after the Authorize
endpoint as redirected the user-agent back to the client with a "code" parameter, and the client is exchanging that for an "access_token".
The claims and properties
associated with the authorization code are present in the context.Ticket. The application must call context.Validated to instruct the Authorization
Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different
AuthenticationTicket or ClaimsIdentity in order to control which information flows from authorization code to access token.
The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the authorization code to
the access token unmodified.
See also http://tools.ietf.org/html/rfc6749#section-4.1.3
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnGrantResourceOwnerCredentials">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "password". This occurs when the user has provided name and password
credentials directly into the client application's user interface, and the client application is using those to acquire an "access_token" and
optional "refresh_token". If the web application supports the
resource owner credentials grant type it must validate the context.Username and context.Password as appropriate. To issue an
access token the context.Validated must be called with a new ticket containing the claims about the resource owner which should be associated
with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers.
The default behavior is to reject this grant type.
See also http://tools.ietf.org/html/rfc6749#section-4.3.2
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnGrantClientCredentials">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "client_credentials". This occurs when a registered client
application wishes to acquire an "access_token" to interact with protected resources on it's own behalf, rather than on behalf of an authenticated user.
If the web application supports the client credentials it may assume the context.ClientId has been validated by the ValidateClientAuthentication call.
To issue an access token the context.Validated must be called with a new ticket containing the claims about the client application which should be associated
with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers.
The default behavior is to reject this grant type.
See also http://tools.ietf.org/html/rfc6749#section-4.4.2
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnGrantRefreshToken">
<summary>
Called when a request to the Token endpoint arrives with a "grant_type" of "refresh_token". This occurs if your application has issued a "refresh_token"
along with the "access_token", and the client is attempting to use the "refresh_token" to acquire a new "access_token", and possibly a new "refresh_token".
To issue a refresh token the an Options.RefreshTokenProvider must be assigned to create the value which is returned. The claims and properties
associated with the refresh token are present in the context.Ticket. The application must call context.Validated to instruct the
Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may
be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from the refresh token to
the access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the refresh token to
the access token unmodified.
See also http://tools.ietf.org/html/rfc6749#section-6
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnGrantCustomExtension">
<summary>
Called when a request to the Token andpoint arrives with a "grant_type" of any other value. If the application supports custom grant types
it is entirely responsible for determining if the request should result in an access_token. If context.Validated is called with ticket
information the response body is produced in the same way as the other standard grant types. If additional response parameters must be
included they may be added in the final TokenEndpoint call.
See also http://tools.ietf.org/html/rfc6749#section-4.5
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnAuthorizeEndpoint">
<summary>
Called at the final stage of an incoming Authorize endpoint request before the execution continues on to the web application component
responsible for producing the html response. Anything present in the OWIN pipeline following the Authorization Server may produce the
response for the Authorize page. If running on IIS any ASP.NET technology running on the server may produce the response for the
Authorize page. If the web application wishes to produce the response directly in the AuthorizeEndpoint call it may write to the
context.Response directly and should call context.RequestCompleted to stop other handlers from executing. If the web application wishes
to grant the authorization directly in the AuthorizeEndpoint call it cay call context.OwinContext.Authentication.SignIn with the
appropriate ClaimsIdentity and should call context.RequestCompleted to stop other handlers from executing.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnTokenEndpoint">
<summary>
Called at the final stage of a successful Token endpoint request. An application may implement this call in order to do any final
modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional
response parameters to the Token endpoint's json response body.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnAuthorizationEndpointResponse">
<summary>
Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the
token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow.
An application may implement this call in order to do any final modification of the claims being used
to issue access or refresh tokens. This call may also be used in order to add additional
response parameters to the authorization endpoint's response.
</summary>
<param name="context">The context of the event carries information in and results out.</param>
<returns>Task to enable asynchronous execution</returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider.OnTokenEndpointResponse">
<summary>
Called before the TokenEndpoint redirects its response to the caller.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider">
<summary>
OAuth bearer token middleware provider
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.IOAuthBearerAuthenticationProvider">
<summary>
Specifies callback methods which the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. />
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthBearerAuthenticationProvider.RequestToken(Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext)">
<summary>
Invoked before the <see cref="T:System.Security.Claims.ClaimsIdentity"/> is created. Gives the application an
opportunity to find the identity from a different location, adjust, or reject the token.
</summary>
<param name="context">Contains the token string.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthBearerAuthenticationProvider.ValidateIdentity(Microsoft.Owin.Security.OAuth.OAuthValidateIdentityContext)">
<summary>
Called each time a request identity has been validated by the middleware. By implementing this method the
application may alter or reject the identity which has arrived with the request.
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.IOAuthBearerAuthenticationProvider.ApplyChallenge(Microsoft.Owin.Security.OAuth.OAuthChallengeContext)">
<summary>
Called each time a challenge is being sent to the client. By implementing this method the application
may modify the challenge as needed.
</summary>
<param name="context">Contains the default challenge.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider"/> class
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.RequestToken(Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext)">
<summary>
Handles processing OAuth bearer token.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.ValidateIdentity(Microsoft.Owin.Security.OAuth.OAuthValidateIdentityContext)">
<summary>
Handles validating the identity produced from an OAuth bearer token.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.ApplyChallenge(Microsoft.Owin.Security.OAuth.OAuthChallengeContext)">
<summary>
Handles applying the authentication challenge to the response message.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.OnRequestToken">
<summary>
Handles processing OAuth bearer token.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.OnValidateIdentity">
<summary>
Handles validating the identity produced from an OAuth bearer token.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationProvider.OnApplyChallenge">
<summary>
Handles applying the authentication challenge to the response message.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthChallengeContext">
<summary>
Specifies the HTTP response header for the bearer authentication scheme.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthChallengeContext.#ctor(Microsoft.Owin.IOwinContext,System.String)">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext"/>
</summary>
<param name="context">OWIN environment</param>
<param name="challenge">The www-authenticate header value.</param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthChallengeContext.Challenge">
<summary>
The www-authenticate header value.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthGrantAuthorizationCodeContext">
<summary>
Provides context information when handling an OAuth authorization code grant.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthGrantAuthorizationCodeContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthGrantAuthorizationCodeContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="ticket"></param>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthGrantRefreshTokenContext">
<summary>
Provides context information used when granting an OAuth refresh token.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthGrantRefreshTokenContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.AuthenticationTicket,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthGrantRefreshTokenContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="ticket"></param>
<param name="clientId"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantRefreshTokenContext.ClientId">
<summary>
The OAuth client id.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext">
<summary>
Specifies the HTTP request header for the bearer authentication scheme.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext.#ctor(Microsoft.Owin.IOwinContext,System.String)">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext"/>
</summary>
<param name="context">OWIN environment</param>
<param name="token">The authorization header value.</param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthRequestTokenContext.Token">
<summary>
The authorization header value
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext">
<summary>
Contains information about the client credentials.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.IReadableStringCollection)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="parameters"></param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext.Validated(System.String)">
<summary>
Sets the client id and marks the context as validated by the application.
</summary>
<param name="clientId"></param>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext.TryGetBasicCredentials(System.String@,System.String@)">
<summary>
Extracts HTTP basic authentication credentials from the HTTP authenticate header.
</summary>
<param name="clientId"></param>
<param name="clientSecret"></param>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext.TryGetFormCredentials(System.String@,System.String@)">
<summary>
Extracts forms authentication credentials from the HTTP request body.
</summary>
<param name="clientId"></param>
<param name="clientSecret"></param>
<returns></returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthValidateClientAuthenticationContext.Parameters">
<summary>
Gets the set of form parameters from the request.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext">
<summary>
Provides context information used when determining the OAuth flow type based on the request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext.MatchesAuthorizeEndpoint">
<summary>
Sets the endpoint type to authorize endpoint.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext.MatchesTokenEndpoint">
<summary>
Sets the endpoint type to token endpoint.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext.MatchesNothing">
<summary>
Sets the endpoint type to neither authorize nor token.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext.IsAuthorizeEndpoint">
<summary>
Gets whether or not the endpoint is an OAuth authorize endpoint.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext.IsTokenEndpoint">
<summary>
Gets whether or not the endpoint is an OAuth token endpoint.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext">
<summary>
Provides context information used when processing an OAuth token request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.AuthenticationTicket,Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="ticket"></param>
<param name="tokenEndpointRequest"></param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.Issue(System.Security.Claims.ClaimsIdentity,Microsoft.Owin.Security.AuthenticationProperties)">
<summary>
Issues the token.
</summary>
<param name="identity"></param>
<param name="properties"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.Identity">
<summary>
Gets the identity of the resource owner.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.Properties">
<summary>
Dictionary containing the state of the authentication session.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.TokenEndpointRequest">
<summary>
Gets information about the token endpoint request.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.TokenIssued">
<summary>
Gets whether or not the token should be issued.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext.AdditionalResponseParameters">
<summary>
Enables additional values to be appended to the token response.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext">
<summary>
Provides context information used in handling an OAuth client credentials grant.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String,System.Collections.Generic.IList{System.String})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="clientId"></param>
<param name="scope"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext.ClientId">
<summary>
OAuth client id.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantClientCredentialsContext.Scope">
<summary>
List of scopes allowed by the resource owner.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext">
<summary>
Provides context information used when handling OAuth extension grant types.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String,System.String,Microsoft.Owin.IReadableStringCollection)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="clientId"></param>
<param name="grantType"></param>
<param name="parameters"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext.ClientId">
<summary>
Gets the OAuth client id.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext.GrantType">
<summary>
Gets the name of the OAuth extension grant type.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantCustomExtensionContext.Parameters">
<summary>
Gets a list of additional parameters from the token request.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext">
<summary>
Provides context information used in validating an OAuth authorization request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest,Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="authorizeRequest"></param>
<param name="clientContext"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext.AuthorizeRequest">
<summary>
Gets OAuth authorization request data.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthValidateAuthorizeRequestContext.ClientContext">
<summary>
Gets data about the OAuth client.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext">
<summary>
Contains data about the OAuth client redirect URI
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="clientId"></param>
<param name="redirectUri"></param>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext.Validated">
<summary>
Marks this context as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling.
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext.Validated(System.String)">
<summary>
Checks the redirect URI to determine whether it equals <see cref="P:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext.RedirectUri"/>.
</summary>
<param name="redirectUri"></param>
<returns></returns>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthValidateClientRedirectUriContext.RedirectUri">
<summary>
Gets the client redirect URI
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthValidateIdentityContext">
<summary>
Contains the authentication ticket data from an OAuth bearer token.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateIdentityContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthBearerAuthenticationOptions,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthValidateIdentityContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="ticket"></param>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext">
<summary>
Provides context information used in handling an OAuth resource owner grant.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String,System.String,System.String,System.Collections.Generic.IList{System.String})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="clientId"></param>
<param name="userName"></param>
<param name="password"></param>
<param name="scope"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext.ClientId">
<summary>
OAuth client id.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext.UserName">
<summary>
Resource owner username.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext.Password">
<summary>
Resource owner password.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthGrantResourceOwnerCredentialsContext.Scope">
<summary>
List of scopes allowed by the resource owner.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext">
<summary>
Provides context information used in validating an OAuth token request.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,Microsoft.Owin.Security.OAuth.Messages.TokenEndpointRequest,Microsoft.Owin.Security.OAuth.BaseValidatingClientContext)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext"/> class
</summary>
<param name="context"></param>
<param name="options"></param>
<param name="tokenRequest"></param>
<param name="clientContext"></param>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext.TokenRequest">
<summary>
Gets the token request data.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.OAuth.OAuthValidateTokenRequestContext.ClientContext">
<summary>
Gets information about the client.
</summary>
</member>
</members>
</doc>