-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMicrosoft.IdentityModel.Clients.ActiveDirectory.xml
More file actions
3425 lines (3387 loc) · 202 KB
/
Microsoft.IdentityModel.Clients.ActiveDirectory.xml
File metadata and controls
3425 lines (3387 loc) · 202 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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.IdentityModel.Clients.ActiveDirectory</name>
</assembly>
<members>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext">
<summary>
The AuthenticationContext class retrieves authentication tokens from Azure Active Directory and ADFS services.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String)">
<summary>
Constructor to create the context with the address of the authority.
Using this constructor will turn ON validation of the authority URL by default if validation is supported for the authority address.
</summary>
<param name="authority">Address of the authority to issue token.</param>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,System.Boolean)">
<summary>
Constructor to create the context with the address of the authority and flag to turn address validation off.
Using this constructor, address validation can be turned off. Make sure you are aware of the security implication of not validating the address.
</summary>
<param name="authority">Address of the authority to issue token.</param>
<param name="validateAuthority">Flag to turn address validation ON or OFF.</param>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache)">
<summary>
Constructor to create the context with the address of the authority.
Using this constructor will turn ON validation of the authority URL by default if validation is supported for the authority address.
</summary>
<param name="authority">Address of the authority to issue token.</param>
<param name="tokenCache">Token cache used to lookup cached tokens on calls to AcquireToken</param>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,System.Boolean,Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache)">
<summary>
Constructor to create the context with the address of the authority and flag to turn address validation off.
Using this constructor, address validation can be turned off. Make sure you are aware of the security implication of not validating the address.
</summary>
<param name="authority">Address of the authority to issue token.</param>
<param name="validateAuthority">Flag to turn address validation ON or OFF.</param>
<param name="tokenCache">Token cache used to lookup cached tokens on calls to AcquireToken</param>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.ExtendedLifeTimeEnabled">
<summary>
Used to set the flag for AAD extended lifetime
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.Authority">
<summary>
Gets address of the authority to issue token.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.ValidateAuthority">
<summary>
Gets a value indicating whether address validation is ON or OFF.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.TokenCache">
<summary>
ADAL's token cache, where tokens are automatically saved.
On some platforms, e.g. iOS, Android and UWP, the TokenCache is backed by a persistent store which is implemeted by ADAL.
On other platforms, e.g. .net and .net core - the developer is responsible for implementing a persistent store.
If not using a persistent store, an in-memory store is used, which is destroyed once the application stops.
To find out more about leveraging the token cache visit: https://aka.ms/adal-net-using-cached-tokens
To find out more about implementing a persistent store, visit: https://aka.ms/adal-net-cache-serialization
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.CorrelationId">
<summary>
Gets or sets correlation Id which would be sent to the service with the next request.
Correlation Id is to be used for diagnostics purposes.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireDeviceCodeAsync(System.String,System.String)">
<summary>
Acquires device code from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<returns>It contains Device Code, its expiration time, User Code.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireDeviceCodeAsync(System.String,System.String,System.String)">
<summary>
Acquires device code from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param>
<returns>It contains Device Code, its expiration time, User Code.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByDeviceCodeAsync(Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult)">
<summary>
Acquires security token from the authority using an device code previously received.
This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="deviceCodeResult">The device code result received from calling AcquireDeviceCodeAsync.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String,System.String)">
<summary>
Acquires an access token from the authority on behalf of a user, passing in the necessary claims for authentication. It requires using a user token previously received.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="parameters">Instance of PlatformParameters containing platform specific arguments and information.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param>
<param name="claims">Additional claims that are needed for authentication. Acquired from the AdalClaimChallengeException</param>
<returns>It contains Access Token and the Access Token's expiration time.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String)">
<summary>
Acquires security token without asking for user credential.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)">
<summary>
Acquires security token without asking for user credential.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters)">
<summary>
Acquires security token without asking for user credential.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<param name="parameters">Instance of PlatformParameters containing platform specific arguments and information.</param>
<returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="parameters">An object of type PlatformParameters which may pass additional parameters used for authorization.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="parameters">An object of type PlatformParameters which may pass additional parameters used for authorization.</param>
<param name="userId">Identifier of the user token is requested for. If created from DisplayableId, this parameter will be used to pre-populate the username field in the authentication form. Please note that the end user can still edit the username field and authenticate as a different user.
If you want to be notified of such change with an exception, create UserIdentifier with type RequiredDisplayableId. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="userId">Identifier of the user token is requested for. If created from DisplayableId, this parameter will be used to pre-populate the username field in the authentication form. Please note that the end user can still edit the username field and authenticate as a different user.
If you want to be notified of such change with an exception, create UserIdentifier with type RequiredDisplayableId. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<param name="parameters">Parameters needed for interactive flow requesting authorization code. Pass an instance of PlatformParameters.</param>
<param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.GetAuthorizationRequestUrlAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String)">
<summary>
Gets URL of the authorize endpoint including the query parameters.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param>
<returns>URL of the authorize endpoint including the query parameters.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.GetAuthorizationRequestUrlAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String,System.String)">
<summary>
Gets URL of the authorize endpoint including the query parameters.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param>
<param name="claims">Additional claims that are needed for authentication. Acquired from the AdalClaimChallengeException. This parameter can be null.</param>
<returns>URL of the authorize endpoint including the query parameters.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)">
<summary>
Acquires security token without asking for user credential.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCredential">The client credential to use for token acquisition.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)">
<summary>
Acquires security token without asking for user credential.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)">
<summary>
Acquires security token without asking for user credential.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientAssertion">The client assertion to use for token acquisition.</param>
<param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param>
<returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential)">
<summary>
Acquires security token from the authority using authorization code previously received.
This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="clientCredential">The credential to use for token acquisition.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential,System.String)">
<summary>
Acquires security token from the authority using an authorization code previously received.
This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">Address to return to upon receiving a response from the authority.</param>
<param name="clientCredential">The credential to use for token acquisition.</param>
<param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion)">
<summary>
Acquires security token from the authority using an authorization code previously received.
This method does not lookup the token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">The redirect address used for obtaining authorization code.</param>
<param name="clientAssertion">The client assertion to use for token acquisition.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion,System.String)">
<summary>
In a Web App, attemps to acquire a security token from the authority using an authorization code previously received
(after a call to one of the overrides of <see cref="M:AcquireTokenByAuthorizationCodeAsync">AcquireTokenByAuthorizationCodeAsync</see>).
For more details see https://aka.ms/adal-net-authorization-code. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">The redirect address used for obtaining authorization code.</param>
<param name="clientAssertion">The client assertion to use for token acquisition.</param>
<param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,System.String,System.Boolean)">
<summary>
In a Web App, attempts to acquire a security token from the authority using an authorization code previously received
(after a call to one of the overrides of <see cref="M:AcquireTokenByAuthorizationCodeAsync">AcquireTokenByAuthorizationCodeAsync</see>).
For more details see https://aka.ms/adal-net-authorization-code. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">The redirect address used for obtaining authorization code.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param>
<param name="sendX5c">This parameter enables application developers to achieve easy certificates roll-over
in Azure AD: setting this parameter to true will send the public certificate to Azure AD
along with the token request, so that Azure AD can use it to validate the subject name based on a trusted issuer policy.
This saves the application admin from the need to explicitly manage the certificate rollover
(either via portal or powershell/CLI operation)</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate)">
<summary>
Acquires security token from the authority using an authorization code previously received.
This method does not lookup the token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">The redirect address used for obtaining authorization code.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,System.String)">
<summary>
Acquires security token from the authority using an authorization code previously received.
This method does not lookup the token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>.
</summary>
<param name="authorizationCode">The authorization code received from service authorization endpoint.</param>
<param name="redirectUri">The redirect address used for obtaining authorization code.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param>
<returns>It contains Access Token, its expiration time, user information.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)">
<summary>
Acquires an access token from the authority on behalf of a user. It requires using a user token previously received.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCredential">The client credential to use for token acquisition.</param>
<param name="userAssertion">The user assertion (token) to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)">
<summary>
Acquires an access token from the authority on behalf of a user. It requires using a user token previously received.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<param name="userAssertion">The user assertion (token) to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion,System.Boolean)">
<summary>
Acquires an access token from the authority on behalf of a user. It requires using a user token previously received.
For more details, see https://aka.ms/adal-net-on-behalf-of
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<param name="userAssertion">The user assertion (token) to use for token acquisition.</param>
<param name="sendX5c">This parameter enables application developers to achieve easy certificates roll-over
in Azure AD: setting this parameter to true will send the public certificate to Azure AD
along with the token request, so that Azure AD can use it to validate the subject name based on a trusted issuer policy.
This saves the application admin from the need to explicitly manage the certificate rollover
(either via portal or powershell/CLI operation)</param>
<returns>It contains Access Token and the Access Token's expiration time.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)">
<summary>
Acquires an access token from the authority on behalf of a user. It requires using a user token previously received.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientAssertion">The client assertion to use for token acquisition.</param>
<param name="userAssertion">The user assertion (token) to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="userAssertion">The assertion to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,System.Boolean)">
<summary>
Acquire a security token for the application (without a user) from the authority while enabling simplified Azure AD certificate roll over.
For more details, see https://aka.ms/adal-net-client-credentials
IMPORTANT: this flow isn’t enabled on the service at the time of this SDK release (ADAL.Net 3.19).
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCertificate">The client certificate to use for token acquisition.</param>
<param name="sendX5c">This parameter enables application developers to achieve easy certificates roll-over
in Azure AD: setting this parameter to true will send the public certificate to Azure AD
along with the token request, so that Azure AD can use it to validate the subject name based on a trusted issuer policy.
This saves the application admin from the need to explicitly manage the certificate rollover
(either via portal or powershell/CLI operation)</param>
<returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientAssertion">The client assertion to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential)">
<summary>
Acquires security token from the authority.
</summary>
<param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
<param name="clientCredential">The client credential to use for token acquisition.</param>
<returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters">
<summary>
Contains authentication parameters based on unauthorized response from resource server.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.Authority">
<summary>
Gets or sets the address of the authority to issue token.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.Resource">
<summary>
Gets or sets the identifier of the target resource that is the recipient of the requested token.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromResourceUrlAsync(System.Uri)">
<summary>
Creates authentication parameters from address of the resource. This method expects the resource server to return unauthorized response
with WWW-Authenticate header containing authentication parameters.
</summary>
<param name="resourceUrl">Address of the resource</param>
<returns>AuthenticationParameters object containing authentication parameters</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromUnauthorizedResponseAsync(System.Net.Http.HttpResponseMessage)">
<summary>
Creates authentication parameters from the response received from the response received from the resource. This method expects the response to have unauthorized status and
WWW-Authenticate header containing authentication parameters.</summary>
<param name="responseMessage">Response received from the resource (e.g. via an http call using HttpClient).</param>
<returns>AuthenticationParameters object containing authentication parameters</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromResponseAuthenticateHeader(System.String)">
<summary>
Creates authentication parameters from the WWW-Authenticate header in response received from resource. This method expects the header to contain authentication parameters.
</summary>
<param name="authenticateHeader">Content of header WWW-Authenticate header</param>
<returns>AuthenticationParameters object containing authentication parameters</returns>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult">
<summary>
Contains the results of one token acquisition operation.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.#ctor(Microsoft.Identity.Core.Cache.AdalResult)">
<summary>
Creates result returned from AcquireToken.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.AccessTokenType">
<summary>
Gets the type of the Access Token returned.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.AccessToken">
<summary>
Gets the Access Token requested.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.ExpiresOn">
<summary>
Gets the point in time in which the Access Token returned in the AccessToken property ceases to be valid.
This value is calculated based on current UTC time measured locally and the value expiresIn received from the service.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.ExtendedExpiresOn">
<summary>
Gets the point in time in which the Access Token returned in the AccessToken property ceases to be valid in ADAL's extended LifeTime.
This value is calculated based on current UTC time measured locally and the value ext_expiresIn received from the service.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.ExtendedLifeTimeToken">
<summary>
Gives information to the developer whether token returned is during normal or extended lifetime.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.TenantId">
<summary>
Gets an identifier for the tenant the token was acquired from. This property will be null if tenant information is not returned by the service.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.UserInfo">
<summary>
Gets user information including user Id. Some elements in UserInfo might be null if not returned by the service.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.IdToken">
<summary>
Gets the entire Id Token if returned by the service or null if no Id Token is returned.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.Authority">
<summary>
Gets the authority that has issued the token.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.CreateAuthorizationHeader">
<summary>
Creates authorization header from authentication result.
</summary>
<returns>Created authorization header</returns>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion">
<summary>
Credential type containing an assertion of type "urn:ietf:params:oauth:token-type:jwt".
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.#ctor(System.String,System.String)">
<summary>
Constructor to create credential with a jwt token encoded as a base64 url encoded string.
</summary>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="assertion">The jwt used as credential.</param>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.ClientId">
<summary>
Gets the identifier of the client requesting the token.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.Assertion">
<summary>
Gets the assertion.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.AssertionType">
<summary>
Gets the assertion type.
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential">
<summary>
Credential including client id and secret.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential.#ctor(System.String,System.String)">
<summary>
Constructor to create credential with client id and secret
</summary>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="clientSecret">Secret of the client requesting the token.</param>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential.#ctor(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ISecureClientSecret)">
<summary>
Constructor to create credential with client id and secret. This is only available on desktop.
</summary>
<param name="clientId">Identifier of the client requesting the token.</param>
<param name="secureClientSecret">Secure secret of the client requesting the token.</param>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential.ClientId">
<summary>
Gets the identifier of the client requesting the token.
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult">
<summary>
This class represents the response from the service when requesting device code.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.UserCode">
<summary>
User code returned by the service
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.DeviceCode">
<summary>
Device code returned by the service
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.VerificationUrl">
<summary>
Verification URL where the user must navigate to authenticate using the device code and credentials.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.ExpiresOn">
<summary>
Time when the device code will expire.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.Interval">
<summary>
Polling interval time to check for completion of authentication flow.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.Message">
<summary>
User friendly text response that can be used for display purpose.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.ClientId">
<summary>
Identifier of the client requesting device code.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.Resource">
<summary>
Identifier of the target resource that would be the recipient of the token.
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalClaimChallengeException">
<summary>
The exception type thrown when a claims challenge error occurs during token acquisition.
</summary>
</member>
<member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalClaimChallengeException.Claims">
<summary>
Claims challenge returned from the STS. This value should be passed back to the API caller.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalClaimChallengeException.#ctor(System.String,System.String,System.Exception,System.String)">
<summary>
Initializes a new instance of the exception class for handling claims.
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError">
<summary>
Error code returned as a property in AdalException
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.Unknown">
<summary>
Unknown error.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NonHttpsRedirectNotSupported">
<summary>
Non https redirect failed
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidArgument">
<summary>
Invalid argument.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthenticationFailed">
<summary>
Authentication failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthenticationCanceled">
<summary>
Authentication canceled.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UnauthorizedResponseExpected">
<summary>
Unauthorized response expected from resource server.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthorityNotInValidList">
<summary>
'authority' is not in the list of valid addresses.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthorityValidationFailed">
<summary>
Authority validation failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AssemblyLoadFailed">
<summary>
Loading required assembly failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AssemblyNotFound">
<summary>
Assembly not found.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidOwnerWindowType">
<summary>
Invalid owner window type.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.MultipleTokensMatched">
<summary>
MultipleTokensMatched were matched.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidAuthorityType">
<summary>
Invalid authority type.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidCredentialType">
<summary>
Invalid credential type.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidServiceUrl">
<summary>
Invalid service URL.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FailedToAcquireTokenSilently">
<summary>
failed_to_acquire_token_silently.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.CertificateKeySizeTooSmall">
<summary>
Certificate key size too small.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IdentityProtocolLoginUrlNull">
<summary>
Identity protocol login URL Null.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IdentityProtocolMismatch">
<summary>
Identity protocol mismatch.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.EmailAddressSuffixMismatch">
<summary>
Email address suffix mismatch.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IdentityProviderRequestFailed">
<summary>
Identity provider request failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.StsTokenRequestFailed">
<summary>
STS token request failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.EncodedTokenTooLong">
<summary>
Encoded token too long.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ServiceUnavailable">
<summary>
Service unavailable.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ServiceReturnedError">
<summary>
Service returned error.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FederatedServiceReturnedError">
<summary>
Federated service returned error.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.StsMetadataRequestFailed">
<summary>
STS metadata request failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NoDataFromSts">
<summary>
No data from STS.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UserMismatch">
<summary>
User Mismatch.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UnknownUserType">
<summary>
Unknown User Type.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UnknownUser">
<summary>
Unknown User.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UserRealmDiscoveryFailed">
<summary>
User Realm Discovery Failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AccessingWsMetadataExchangeFailed">
<summary>
Accessing WS Metadata Exchange Failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ParsingWsMetadataExchangeFailed">
<summary>
Parsing WS Metadata Exchange Failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.WsTrustEndpointNotFoundInMetadataDocument">
<summary>
WS-Trust Endpoint Not Found in Metadata Document.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ParsingWsTrustResponseFailed">
<summary>
Parsing WS-Trust Response Failed.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NetworkNotAvailable">
<summary>
The request could not be preformed because the network is down.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthenticationUiFailed">
<summary>
The request could not be preformed because of an unknown failure in the UI flow.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UserInteractionRequired">
<summary>
One of two conditions was encountered.
1. The PromptBehavior.Never flag was passed and but the constraint could not be honored
because user interaction was required.
2. An error occurred during a silent web authentication that prevented the authentication
flow from completing in a short enough time frame.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.PasswordRequiredForManagedUserError">
<summary>
Password is required for managed user.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.GetUserNameFailed">
<summary>
Failed to get user name.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.MissingFederationMetadataUrl">
<summary>
Federation Metadata Url is missing for federated user.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FailedToRefreshToken">
<summary>
Failed to refresh token.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IntegratedAuthFailed">
<summary>
Integrated authentication failed. You may try an alternative authentication method.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DuplicateQueryParameter">
<summary>
Duplicate query parameter in extraQueryParameters
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.BrokerReponseHashMismatch">
<summary>
Broker response hash did not match
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DeviceCertificateNotFound">
<summary>
Device certificate not found.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InteractionRequired">
<summary>
Claims step-up required.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidWebBrowserType">
<summary>
Invalid web browser type.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidWebPageResponse">
<summary>
Invalid web page response
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FormPostParsingFailure">
<summary>
Form post parsing failure
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.BrokerRedirectUriIncorrectFormat">
<summary>
Broker redirectUri has incorrect format
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.CannotAccessUserInformationOrUserNotDomainJoined">
<summary>
Cannot fetch the upn from the OS, possibly due to missing permissions
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DeviceCodeAuthorizationPendingError">
<summary>
This library is still polling to see if the user entered the code as instructed by the device code message.
This is for information only, not an error.
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DeviceCodeAuthorizationCodeExpired">
<summary>
The device code expiered before it was sent to the server
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UapRedirectUriUnsupported">
<summary>
PromptBehavior.Never is supported in SSO mode only (null or application's callback URI as redirectUri)
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.AdalErrorMessage">
<summary>
The active directory authentication error message.
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenIWAHandler">
<summary>
Handler for Integrated Windows Authentication
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.Product">
<summary>
ADAL Flavor: PCL.CoreCLR, PCL.Android, PCL.iOS, PCL.Desktop, PCL.WinRT
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.Version">
<summary>
ADAL assembly version
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.CpuPlatform">
<summary>
CPU platform with x86, x64 or ARM as value
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.OS">
<summary>
Version of the operating system. This will not be sent on WinRT
</summary>
</member>
<member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.DeviceModel">
<summary>
Device model. This will not be sent on .NET
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdHelper">
<summary>
This class adds additional query parameters or headers to the requests sent to STS. This can help us in
collecting statistics and potentially on diagnostics.
</summary>
</member>
<member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper">
<summary>
The encoding helper.
</summary>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.UrlEncode(System.String)">
<summary>
URL encode the given string.
</summary>
<param name="message">String to URL encode</param>
<returns>URL encoded string</returns>
<remarks>This method encodes the space ' ' character as "+" rather than "%20".</remarks>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.UrlDecode(System.String)">
<summary>
Decode the given URL encoded string.
</summary>
<param name="message">URL encoded string to decode</param>
<returns>Decoded string</returns>
<remarks>This method decodes "+" (as well as "%20") into the space character ' '.</remarks>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueList(System.String,System.Char,System.Boolean,System.Boolean,Microsoft.Identity.Core.RequestContext)">
<summary>
Parse a delimited string of key-value pairs in to a dictionary.
</summary>
<param name="input">Delimited string of key-value pairs</param>
<param name="delimiter">Character used as a delimiter between key-value pairs</param>
<param name="urlDecode">True to perform URL decoding of both the keys and values</param>
<param name="lowercaseKeys">True to make all resulting keys lower-case</param>
<param name="requestContext">call state to pass correlation id and logger instance</param>
<returns>Dictionary of string key-value pairs</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueListStrict(System.String,System.Char,System.Boolean,System.Boolean,Microsoft.Identity.Core.RequestContext)">
<summary>
Parse a delimited string of key-value pairs in to a dictionary.
</summary>
<param name="input">Delimited string of key-value pairs</param>
<param name="delimiter">Character used as a delimiter between key-value pairs</param>
<param name="urlDecode">True to perform URL decoding of both the keys and values</param>
<param name="lowercaseKeys">True to make all resulting keys lower-case</param>
<param name="requestContext">call state to pass correlation id and logger instance</param>
<exception cref="T:System.ArgumentException">Thrown if a malformed key-value pair is present in <paramref name="input"/></exception>
<returns>Dictionary of string key-value pairs</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueList(System.String,System.Char,System.Boolean,System.Boolean,Microsoft.Identity.Core.RequestContext,System.Boolean)">
<summary>
Parse a delimited string of key-value pairs in to a dictionary.
</summary>
<param name="input">Delimited string of key-value pairs</param>
<param name="delimiter">Character used as a delimiter between key-value pairs</param>
<param name="urlDecode">True to perform URL decoding of both the keys and values</param>
<param name="lowercaseKeys">True to make all resulting keys lower-case</param>
<param name="requestContext">call state to pass correlation id and logger instance</param>
<param name="strict">Throw <see cref="T:System.ArgumentException"/> when the input string contains a malformed key-value pair</param>
<exception cref="T:System.ArgumentException">Thrown if <paramref name="strict"/> is true and a malformed key-value pair is present in <paramref name="input"/></exception>
<returns>Dictionary of string key-value pairs</returns>
</member>
<member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueList(System.String,System.Char,System.Boolean,Microsoft.Identity.Core.RequestContext)">
<summary>
Parse a delimited string of key-value pairs in to a dictionary.
</summary>
<param name="input">Delimited string of key-value pairs</param>
<param name="delimiter">Character used as a delimiter between key-value pairs</param>