Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Exchange.WebServices.Auth</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager">
            <summary>
            Exchange Resource Manager.
            </summary>
            <remarks>
            The Exchange Resource Manager gives us access to the assembly name.
            This allows the LocalizedString to try to reconstruct a "serialized"
            resource manager in the client side. If the client does not have
            the corresponding assembly, the resource manager will not be constructed,
            of course. See the description in LocalizedString for more details.
            </remarks>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.resourceManagers">
            <summary>
            Dictionary of resource managers. Initialized only if someone uses resources in the process.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.lockObject">
            <summary>
            lock object used when accessing ResourceManager
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.#ctor(System.String,System.Reflection.Assembly)">
            <summary>
            Initializes a new instance of the ExchangeResourceManager class
            </summary>
            <param name="baseName">The root name of the resources.</param>
            <param name="assembly">The main Assembly for the resources.</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.GetResourceManager(System.String,System.Reflection.Assembly)">
            <summary>
            Returns the instance of the ExchangeResourceManager class that looks up 
            resources contained in files derived from the specified root name using the given Assembly.
            <see cref="T:System.Resources.ResourceManager"/>
            </summary>
            <param name="baseName">The root name of the resources.</param>
            <param name="assembly">The main Assembly for the resources.</param>
            <exception cref="T:System.ArgumentNullException">
            <paramref name="assembly"/> is null.
            </exception>
            <returns>An instance of ExchangeResourceManager</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.GetString(System.String)">
            <summary>
            Retrieves a string from the resource table based on a string id.
            Asserts if the string cannot be found.
            </summary>
            <param name="name">Id of the string to retrieve.</param>
            <returns>The corresponding string if the id was located in the table, null otherwise.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.GetString(System.String,System.Globalization.CultureInfo)">
            <summary>
            Retrieves a string from the resource table based on a string id.
            Asserts if the string cannot be found.
            </summary>
            <param name="name">Id of the string to retrieve.</param>
            <param name="culture">The culture to use.</param>
            <returns>The corresponding string if the id was located in the table, null otherwise.</returns>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.BaseName">
            <summary>
            Base Name for the resources
            </summary>
            <remarks>
            Used by LocalizedString to serialize localized strings.
            </remarks>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager.AssemblyName">
            <summary>
            Gets the assembly name
            </summary>
            <remarks>
            Used by LocalizedString to serialize localized strings.
            </remarks>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.ILocalizedString">
            <summary>
            Interface implemented by objects that provide a LocalizedString.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.ILocalizedString.LocalizedString">
            <summary>
            Gets the LocalizedString held by this object.
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.LocalizedString">
            <summary>
            Struct that defines a localized string.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.LocalizedString.Empty">
            <summary>
            The one and only LocalizedString.Empty.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.LocalizedString.Id">
            <summary>
            The id of the localized string.
            </summary>
            <remarks>
            If we don't have a ResourceManager, this is
            the formating string we'll use in ToString().
            This can happen if we serialize the object and
            we are unable to reload the resource manager
            when deserializing.
            </remarks>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.LocalizedString.Inserts">
            <summary>
            Strings to be inserted in the message identified by Id.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.LocalizedString.ResourceManager">
            <summary>
            Resource Manager capable of loading the string.
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.#ctor(System.String,Microsoft.Exchange.WebServices.Auth.ExchangeResourceManager,System.Object[])">
            <summary>
            Initializes a new instance of the LocalizedString struct.
            </summary>
            <param name="id">The id of the localized string.</param>
            <param name="resourceManager">Resource Manager capable of loading the string.</param>
            <param name="inserts">Strings to be inserted in the message identified by Id.</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.#ctor(System.String)">
            <summary>
            Initializes a new instance of the LocalizedString struct.
            Encapsulates a string in a LocalizedString.
            </summary>
            <remarks>
            While the rule of thumb says that an implicit conversion
            can be used when there's no loss of data, this is not the case 
            with this constructor. When going from string to LocalizedString
            we don't lose information but we don't gain information
            either. The usage pattern of LocalizedString asks that
            if a string is to be localizable it should always be
            transported around in a LocalizedString. If you are setting
            a LocalizedString from a string it is most likely
            that you lost data already, somewhere else. To flag this
            problem, instead of an implicit conversion we have a constructor
            to remind people that this is not your ideal situation. This way 
            we can also search for "new LocalizedString" in the code and 
            see where we're doing this and come up with a design where
            we will not lose the localization information until it's
            time to show the string to the user.
            Ideally, we would be able to remove all instances where we
            need this constructor, but then people would just create a 
            localized string "{0}", which would give us just about the 
            same thing with less perf.
            </remarks>
            <param name="value">
            String to encapsulate.
            Note that if value is null this creates a copy of 
            LocalizedString.Empty and ToString will return "", not null.
            This is intentional to avoid returning null from ToString().
            </param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.#ctor(System.String,System.Object[])">
            <summary>
            Initializes a new instance of the LocalizedString struct.
            Encapsulates a hardcoded formatting string and 
            its parameters as a LocalizedString.
            </summary>
            <param name="format">Formatting string.</param>
            <param name="inserts">Insert parameters.</param>
            <remarks>
            The formatting string is localized "as-is".
            This is used to append strings and other things like that.
            </remarks>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the LocalizedString struct.
            Serialization-required constructor 
            </summary>
            <param name="info">Holds the serialized object data about the exception being thrown.</param>
            <param name="context">Contains contextual information about the source or destination.</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.op_Equality(Microsoft.Exchange.WebServices.Auth.LocalizedString,Microsoft.Exchange.WebServices.Auth.LocalizedString)">
            <summary>
            Compares both strings.
            </summary>
            <param name="s1">First string.</param>
            <param name="s2">Second string.</param>
            <returns>True if objects are equal.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.op_Inequality(Microsoft.Exchange.WebServices.Auth.LocalizedString,Microsoft.Exchange.WebServices.Auth.LocalizedString)">
            <summary>
            Compares both strings.
            </summary>
            <param name="s1">First string.</param>
            <param name="s2">Second string.</param>
            <returns>True if objects are not equal.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.op_Implicit(Microsoft.Exchange.WebServices.Auth.LocalizedString)~System.String">
            <summary>
            Implicit conversion from a LocalizedString to a string.
            </summary>
            <param name="value">LocalizedString value to convert to a string.</param>
            <returns>The string localized in the CurrentCulture.</returns>
            <remarks>
            While the rule of thumb says that an implicit conversion
            should not loose data, this operator is an exception.
            The moment a LocalizedString becomes a string, we lose
            the localization information and we end up with the
            localized string in the current culture - from there
            we cannot go back to a fully localizable string.
            We allow that because the usage pattern of LocalizedString
            is so that by the time we convert a LocalizedString to
            a string we are about to show the string to the client.
            Most certainly we'll never import that string back
            into a LocalizedString again, so it really does not matter
            that we're loosing the information.
            </remarks>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.Join(System.Object,System.Object[])">
            <summary>
            Joins objects in a localized string.
            </summary>
            <param name="separator">Separator between strings.</param>
            <param name="value">Array of objects to join as strings.</param>
            <returns>
            A LocalizedString that concatenates the given objects.
            </returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Called when the object is serialized. 
            </summary>
            <remarks>
            When serializing the insert parameters we will replace any non-serializable object
            with its ToString() version or its ILocalizedString.LocalizedString property.
            </remarks>
            <param name="info">Holds the serialized object data about the exception being thrown.</param>
            <param name="context">Contains contextual information about the source or destination.</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.ToString">
            <summary>
            Returns the string localized in the current UI culture.
            </summary>
            <returns>The localized string.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.ToString(System.IFormatProvider)">
            <summary>
            Returns the string localized in the given culture.
            </summary>
            <param name="formatProvider">
            The <see cref="T:System.IFormatProvider"/> to use to format the value or
            a <see langword="null"/> reference to obtain the format information 
            from the current UI culture. This parameter is usually a 
            <see cref="T:System.Globalization.CultureInfo"/> object.
            </param>
            <returns>The localized string.</returns>
            <remarks>
            Note that neutral cultures are unable to format
            strings that contain numeric or date/time insertion parameters.
            </remarks>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.System#IFormattable#ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns the string localized in the given culture.
            </summary>
            <param name="format">
            The <see cref="T:System.String"/> specifying the format to use or 
            a <see langword="null"/> reference to use the default format 
            defined for the type of the <see cref="T:System.IFormattable"/> implementation. 
            This parameter is currently ignored.
            </param>
            <param name="formatProvider">
            The <see cref="T:System.IFormatProvider"/> to use to format the value or
            a <see langword="null"/> reference to obtain the format information 
            from the current UI culture. 
            If this parameter is a <see cref="T:System.Globalization.CultureInfo"/> the resulting
            string will be localized in the given culture otherwise the
            current UI culture will be used to load the string from the
            resource file.
            </param>
            <returns>The string localized in the given culture.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.GetHashCode">
            <summary>
            Returns a hash code based on the hash of the resource manager and the hash of the ID.
            </summary>
            <returns>Hash code of object.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.Equals(System.Object)">
            <summary>
            Compares this string with another.
            </summary>
            <param name="obj">Object to compare</param>
            <returns>Returns true if objects are equal.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.Equals(Microsoft.Exchange.WebServices.Auth.LocalizedString)">
            <summary>
            Compares this string with another.
            </summary>
            <param name="obj">Object to compare.</param>
            <returns>True if LocalizedString objects are equal.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.LocalizedString.TranslateObject(System.Object,System.IFormatProvider)">
            <summary>
            Given an object that is not good for serialization or that
            returns an awful string in its ToString() this function
            will return one that we consider better for the user.
            </summary>
            <param name="badObject">Object that cannot be serialized</param>
            <param name="formatProvider">FormatProvider to use</param>
            <returns>A string or LocalizedString to represent the object.</returns>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.LocalizedString.Microsoft#Exchange#WebServices#Auth#ILocalizedString#LocalizedString">
            <summary>
            Gets the object itself.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.LocalizedString.IsEmpty">
            <summary>
            Gets a value indicating whether the string is empty.
            </summary>
            <remarks>
            This is slighly faster than comparing the string against LocalizedString.Empty.
            </remarks>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.LocalizedString.BaseId">
            <summary>
            Gets a numeric Id identifying the localized string template without taking the inserts into consideration.
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.AuthToken">
            <summary>
            Definition for AuthToken
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.AuthToken.Parse(System.String)">
            <summary>
            static method for parsing a token for validation
            </summary>
            <param name="token">token as string</param>
            <returns>a instance of the Base64EncodedTokenParser</returns>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder">
            <summary>
            Definition of the Base64EncodedTokenDecoder class
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder">
            <summary>
            Definition for the ITokenDecoder Interface
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder.RawToken">
            <summary>
            Gets a string containing the original token in raw form.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder.ExchangeUserId">
            <summary>
            Gets the Unique Exchange UserId value listed in the token
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder.Version">
            <summary>
            Gets the appctx.version of the token
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder.Thumbprint">
            <summary>
            Get the thumbprint from the token's header
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder.AuthenticationKeyUrl">
            <summary>
            Gets a valid Url for a public key for authenticating the signature in the token.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.VersionField">
            <summary>
            Metadocument required version field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.AcceptedVersion">
            <summary>
            Metadocument required version value
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.MetaUrlField">
            <summary>
            location of public key
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.ExchangeUidField">
            <summary>
            signed user id
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.ThumbprintField">
            <summary>
            token's thumbprint field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.authenticationUrl">
            <summary>
            Uri of path to public key metadocument
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.rawToken">
            <summary>
            Array of strings containing the token's fields
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.header">
            <summary>
            header section JSON
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.payload">
            <summary>
            payload section JSON
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.#ctor(System.String)">
            <summary>
            Initializes a new instance of the Base64EncodedTokenDecoder class.
            </summary>
            <param name="token">Original token as string</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.ExtractDelimitedToken(System.String)">
            <summary>
            Splits the received token into sections for decoding
            </summary>
            <param name="rawToken">The source token</param>
            <returns>An array of Token Sections</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.DecodeSection(System.String)">
            <summary>
            Decodes a given section from Base64 to a plaintext string
            </summary>
            <param name="section">the section to decode</param>
            <returns>the decoded section</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.ValidateVersion(System.String)">
            <summary>
            Checks decoded token for valid version
            </summary>
            <param name="expectedVersion">The current accepted version string</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.ValidateMetaDocumentUrl">
            <summary>
            Checks decoded token for valid metadocument url
            </summary>
            <returns>validated Uri to valid public key metadocument</returns>
            <remarks>supports our readonly uri</remarks>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.AuthenticationKeyUrl">
            <summary>
            Gets a valid Url for a public key for authenticating the signature in the token.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.ExchangeUserId">
            <summary>
            Gets the Unique MSEX_UserId value listed in the token
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.Version">
            <summary>
            Gets the appctx.version of the token
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.Thumbprint">
            <summary>
            Get the xt5 thumbprint from the token's header
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.Base64EncodedTokenDecoder.RawToken">
            <summary>
            Gets a string containing the original token in raw form.
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.CallerIdentityTokenHandler">
            <summary>
            Definition for the CallerIdentityTokenHandler class
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.CallerIdentityTokenHandler.#ctor(System.Uri,System.String)">
            <summary>
            Initializes a new instance of the CallerIdentityTokenHandler class.
            </summary>
            <param name="extensionServiceHost">The source url of the current public key's document</param>
            <param name="key">The key to certify</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.CallerIdentityTokenHandler.ValidateToken(System.IdentityModel.Tokens.SecurityToken)">
            <summary>
            Validates the token
            </summary>
            <param name="token">token to be validated</param>
            <returns>a Claims Identity Collection</returns>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken">
            <summary>
            Definition for AppIdentityToken
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.token">
            <summary>
            decoded token for internal use
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.retriever">
            <summary>
            IMetaDocumentRetriever instance for retrieving the public key.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.keyinfo">
            <summary>
            PublicKeyInfo exposed for determining if key has been cached.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.uniqueUserId">
            <summary>
            The concatenated amurl's dnssafehost + the token's ExchUid
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.expiration">
            <summary>
            The time of expiration for a validated token
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.version">
            <summary>
            The version
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.claims">
            <summary>
            The ClaimsIdentityCollection returned by the token handler
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.#ctor(Microsoft.Exchange.WebServices.Auth.Validation.ITokenDecoder,Microsoft.Exchange.WebServices.Auth.Validation.IMetaDocumentRetriever)">
            <summary>
            Initializes a new instance of the AppIdentityToken class.
            </summary>
            <param name="tokenDecoder">ITokenDecoder containing a token in the expected token</param>
            <param name="metaDocumentRetriever">IMetaDocumentRetrieverSingleton MetaDocument Retriever</param>
            <remarks>Correctly formatted does not guarantee validity.  It simply means the token is in the expected format.</remarks>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.Validate(System.Uri)">
            <summary>
            validate the current token against the public key
            </summary>
            <param name="extensionServiceHost">url for the signed token's public key</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.Validate(System.Uri,System.String)">
            <summary>
            validate the current token against the public key
            </summary>
            <param name="extensionServiceHost">url for the signed token's public key</param>
            <param name="catchedKey">public key</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.ProcessToken(System.Uri,System.String)">
            <summary>
            validate the current token against the a public key
            </summary>
            <param name="extensionServiceHost">url for the signed token's public key</param>
            <param name="key">the PublicKey to validate</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.PopulateIdentityToken(System.IdentityModel.Tokens.SecurityToken,System.String)">
            <summary>
            populates the internal IdentityToken attributes upon a successful key + token validation.
            </summary>
            <param name="token">Token processed by the TokenHandler</param>
            <param name="key">The current public key's value</param>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.PublicKeyInfo">
            <summary>
            Gets the token's PublicKeyInfo
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.UniqueUserIdentification">
            <summary>
            Gets a Unique User ID from a validated token or returns null.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.ExpirationDate">
            <summary>
            Gets the Date and Time when this IdentityToken expires.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.Version">
            <summary>
            Gets the Claim Version
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.AppIdentityToken.Claims">
            <summary>
            Gets the ClaimsIdentityCollection validated during validation
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.HttpMetaDocumentRetriever">
            <summary>
            Definition of the HttpMetaDocumentRetriever class
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.IMetaDocumentRetriever">
            <summary>
            Definition for the IMetaDocumentRetriever Interface
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.IMetaDocumentRetriever.GetData(System.Uri,System.Boolean,System.String@)">
            <summary>
            Retrieves a MetaDocument for validating a Token Signature
            </summary>
            <param name="url">Url to the metadocument</param>
            <param name="bypassCache">Ignore a catched version of the metadocument</param>
            <param name="publicKeyDocument">string which will contain the returned public key document</param>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.HttpMetaDocumentRetriever.singleton">
            <summary>
            holds the one permitted instance of the HttpMetaDocumentRetriever class.
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.HttpMetaDocumentRetriever.#ctor">
            <summary>
            Prevents a default instance of the HttpMetaDocumentRetriever class from being created.
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.HttpMetaDocumentRetriever.GetData(System.Uri,System.Boolean,System.String@)">
            <summary>
            Gets an authentification MetaDocument via Http
            </summary>
            <param name="url">Uri to the MetaDocument</param>
            <param name="bypassCache">indicates whether the metadocument cache should be ignored</param>
            <param name="publicKeyDocument">string which will contain the returned public key document</param>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.HttpMetaDocumentRetriever.Instance">
            <summary>
            Gets a singleton instance of the HttpMetaDocumentRetriever class
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder">
            <summary>
            Definition for the JsonDecoder class
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.fields">
            <summary>
            Dictionary of discovered name value pairs
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.embeddedLists">
            <summary>
            Dictionary of discovered embedded lists
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.#ctor(System.String)">
            <summary>
            Initializes a new instance of the JsonDecoder class.
            </summary>
            <param name="jsonContent">JSON to decode as a string</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.#ctor(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Initializes a new instance of the JsonDecoder class.
            </summary>
            <param name="jsonDictionary">JSON dictioanary to deep decode.</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.GetField(System.String)">
            <summary>
            Gets the value of a named field discovered during decoding.
            </summary>
            <param name="name">Name of the field to return</param>
            <returns>Value of field as a string or an Empty string if the named field was not found.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.GetField(System.String,System.Boolean)">
            <summary>
            Gets the value of a named field discovered during decoding.
            </summary>
            <param name="name">Name of the field to return</param>
            <param name="mustExist">throw an error if the field does not exist.</param>
            <returns>Value of field as a string</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.GetFields">
            <summary>
            Gets a list of fieldnames in string form
            </summary>
            <returns>A List of strings</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.GetChildObjects(System.String)">
            <summary>
            Deserialize an array of child objects.
            </summary>
            <param name="fieldName">the name of the field containing a JSON'd array</param>
            <returns>A List of JsonDecoder objects.</returns>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.RunWithJavaScriptSerializerExceptionHandler(System.Action)">
            <summary>
            Helper to wrap JavaScriptSerializer action, catching the interesting exception and rethrowing
            appropriate exception.
            </summary>
            <param name="action">The action to run</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.UnpackJsonPayload(System.String,System.String)">
            <summary>
            Deserialize a JSON payload and load into a Dictionary of fieldname strings
            </summary>
            <param name="keyPrefix">an optional prefix to append to this decoders fields</param>
            <param name="jsonContent">JSON encoded string payload </param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.JsonDecoder.UnpackJsonPayload(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Deserialize a JSON payload and load into a Dictionary of fieldname strings
            </summary>
            <param name="keyPrefix">an optional prefix to append to this decoders fields</param>
            <param name="dictionary">Dictionary of objects to unpack.</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.PublicKey">
            <summary>
            Definition of the PublicKey class
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKey.Usage">
            <summary>
            string containing the key's intended purpose
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKey.Type">
            <summary>
            string containing the key's name
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKey.Value">
            <summary>
            string containing the key's value
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKey.Thumbprint">
            <summary>
            string containing the key's thumbprint
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.PublicKey.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Initializes a new instance of the PublicKey class
            </summary>
            <param name="type">type of key as string, e.g: x509Certificate</param>
            <param name="value">value of key as a Base64 encoded string</param>
            <param name="usage">intended usage of key</param>
            <param name="thumbprint">key thumbprint</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder">
            <summary>
            Definition for the PublicKeyDocumentDecoder class
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.KeysField">
            <summary>
            Name of the keys field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.KeyUsageField">
            <summary>
            Name of a key intended usage field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.KeyThumbprintField">
            <summary>
            Name of the key's thumbprint field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.KeyTypeField">
            <summary>
            Name of a key Type field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.KeyValueField">
            <summary>
            Name of a key Value field
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.keys">
            <summary>
            List of PublicKeys found in the parsed document
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.#ctor(System.String)">
            <summary>
            Initializes a new instance of the PublicKeyDocumentDecoder class.
            </summary>
            <param name="publicKeyDocument">document containing the public key to be certified.</param>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyDocumentDecoder.Keys">
            <summary>
            Gets an enumerable list of keys in string form
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyInfo">
            <summary>
            Definition of the PublicKeyInfo class
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyInfo.Key">
            <summary>
            string containing the key's name
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyInfo.Value">
            <summary>
            string containing the key's value
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.PublicKeyInfo.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the PublicKeyInfo class
            </summary>
            <param name="key">name of key as string</param>
            <param name="value">value of key as string</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenAudienceException">
            <summary>
            Definition for InvalidTokenAudienceException
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.TokenValidationException">
            <summary>
            Definition for TokenValidationException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.TokenValidationException.#ctor">
            <summary>
            Initializes a new instance of the TokenValidationException class
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.TokenValidationException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the TokenValidationException class
            </summary>
            <param name="message">message to show</param>
            <param name="innerException">Inner exceptioin object.</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.TokenValidationException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the TokenValidationException class
            </summary>
            <param name="message">information about the exceptions cause</param>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenAudienceException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the InvalidTokenAudienceException class.
            </summary>
            <param name="message">message describing that the audience is invalid</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenFormatException">
            <summary>
            Definition for InvalidTokenFormatException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenFormatException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the InvalidTokenFormatException class.
            </summary>
            <param name="message">message describing actual count vs. expected field count</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenSignatureException">
            <summary>
            Definition for InvalidTokenSignatureException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenSignatureException.#ctor">
            <summary>
            Initializes a new instance of the InvalidTokenSignatureException class.
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenSignatureException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the InvalidTokenSignatureException class.
            </summary>
            <param name="message">description of the reason for the exception</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenVersionException">
            <summary>
            Definition for InvalidTokenVersionException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.InvalidTokenVersionException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the InvalidTokenVersionException class.
            </summary>
            <param name="message">message describing actual token version vs. expected version</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.MalformedContentException">
            <summary>
            Definition for MalformedContentException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.MalformedContentException.#ctor">
            <summary>
            Initializes a new instance of the MalformedContentException class.
            </summary>
            <remarks>Reports that the JSON'ed content is malformed.</remarks>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.MalformedContentException.#ctor(System.Exception)">
            <summary>
            Initializes a new instance of the MalformedContentException class.
            </summary>
            <param name="innerException">inner exception</param>
            <remarks>Reports that the JSON'ed content is malformed.</remarks>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.MalformedContentException.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the MalformedContentException class.
            </summary>
            <param name="message">The message to report with an insertion point for the field.</param>
            <param name="fieldName">the name of the malformed field</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.MetadataAccessException">
            <summary>
            Definition for MetadataAccessException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.MetadataAccessException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the MetadataAccessException class.
            </summary>
            <param name="details">message describing the specific error encountered while retrieving the Metadocument</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.MissingFieldException">
            <summary>
            Definition for MissingFieldException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.MissingFieldException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the MissingFieldException class.
            </summary>
            <param name="fieldName">name of the missing field</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.TokenExpiredException">
            <summary>
            Definition for TokenExpiredException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.TokenExpiredException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the TokenExpiredException class.
            </summary>
            <param name="message">message describing that the token is expired</param>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Validation.TokenRequiresValidationException">
            <summary>
            Definition for TokenRequiresValidationException
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Validation.TokenRequiresValidationException.#ctor">
            <summary>
            Initializes a new instance of the TokenRequiresValidationException class.
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Strings">
            <summary>
            Localized Strings
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.stringIDs">
            <summary>
            IDS available on this class that do not require parameters.
            Using this array is faster than calling enum.ToString.
            </summary>
        </member>
        <member name="M:Microsoft.Exchange.WebServices.Auth.Strings.GetLocalizedString(Microsoft.Exchange.WebServices.Auth.Strings.IDs)">
            <summary>
            Returns the localized string corresponding to the given key
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.ResourceManager">
            <summary>
            Resource Manager
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MalformedUrlBadHost">
            <summary>
            The authentication metadata document's URL found in the token does not have a valid DNS Hostname. Extracted URL: '{0}'
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.RequiresValidation">
            <summary>
            The token has not been validated and requires a successful validation.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MalformedUrl">
            <summary>
            The authentication metadata document's URL found in the token is malformed.  Extracted URL: '{0}'
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.InvalidSet">
            <summary>
            The field '{0}' could not be converted into a set.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MetadataAccessFailure">
            <summary>
            The Metadocument could not be retrieved. {0}
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.NotASet">
            <summary>
            The field '{0}' does not contain a set.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MissingUrl">
            <summary>
            The token does not contain an authentication metadata document URL.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MalformedJson">
            <summary>
            The JSON'd content could not be deserialized.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MissingField">
            <summary>
            The credentials do not contain a '{0}' field.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MalformedUrlBadScheme">
            <summary>
            The authentication metadata document's URL found in the token does not have a valid Scheme name. Extracted URL: '{0}'
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.InvalidTokenSignatureException">
            <summary>
            The supplied token failed public key signature authentication.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.InvalidToken">
            <summary>
            The given token is invalid.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MalformedField">
            <summary>
            The credentials contain an invalid '{0}' field.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.InvalidTokenVersion">
            <summary>
            The token version {0} does not match the expected version {1}.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.InvalidTokenFieldCount">
            <summary>
            The token contained {0} fields.  It is supposed to contain 3.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.NoMatchingKey">
            <summary>
            No matching key was found for this token with thumbprint '{0}'.
            </summary>
        </member>
        <member name="P:Microsoft.Exchange.WebServices.Auth.Strings.MissingTokenVersion">
            <summary>
            The token does not contain a version.
            </summary>
        </member>
        <member name="T:Microsoft.Exchange.WebServices.Auth.Strings.IDs">
            <summary>
            ID of the strings available on this class that do not require parameters.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MalformedUrlBadHost">
            <summary>
            The authentication metadata document's URL found in the token does not have a valid DNS Hostname. Extracted URL: '{0}'
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.RequiresValidation">
            <summary>
            The token has not been validated and requires a successful validation.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MalformedUrl">
            <summary>
            The authentication metadata document's URL found in the token is malformed.  Extracted URL: '{0}'
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.InvalidSet">
            <summary>
            The field '{0}' could not be converted into a set.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MetadataAccessFailure">
            <summary>
            The Metadocument could not be retrieved. {0}
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.NotASet">
            <summary>
            The field '{0}' does not contain a set.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MissingUrl">
            <summary>
            The token does not contain an authentication metadata document URL.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MalformedJson">
            <summary>
            The JSON'd content could not be deserialized.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MissingField">
            <summary>
            The credentials do not contain a '{0}' field.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MalformedUrlBadScheme">
            <summary>
            The authentication metadata document's URL found in the token does not have a valid Scheme name. Extracted URL: '{0}'
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.InvalidTokenSignatureException">
            <summary>
            The supplied token failed public key signature authentication.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.InvalidToken">
            <summary>
            The given token is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MalformedField">
            <summary>
            The credentials contain an invalid '{0}' field.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.InvalidTokenVersion">
            <summary>
            The token version {0} does not match the expected version {1}.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.InvalidTokenFieldCount">
            <summary>
            The token contained {0} fields.  It is supposed to contain 3.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.NoMatchingKey">
            <summary>
            No matching key was found for this token with thumbprint '{0}'.
            </summary>
        </member>
        <member name="F:Microsoft.Exchange.WebServices.Auth.Strings.IDs.MissingTokenVersion">
            <summary>
            The token does not contain a version.
            </summary>
        </member>
    </members>
</doc>

Commits for ChrisCompleteCodeTrunk/ActionTireCo/packages/Microsoft.Exchange.WebServices.2.2/lib/40/Microsoft.Exchange.WebServices.Auth.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000