@tsonic/efcore-sqlserver 10.0.1 → 10.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. package/Azure/bindings.json +686 -17
  2. package/Azure/internal/index.d.ts +37 -7
  3. package/Azure.Core/bindings.json +1048 -19
  4. package/Azure.Core/internal/index.d.ts +40 -9
  5. package/Azure.Core.Cryptography/bindings.json +5 -0
  6. package/Azure.Core.Diagnostics/bindings.json +56 -0
  7. package/Azure.Core.Diagnostics/internal/index.d.ts +9 -3
  8. package/Azure.Core.Diagnostics.d.ts +2 -2
  9. package/Azure.Core.Extensions/bindings.json +17 -0
  10. package/Azure.Core.GeoJson/bindings.json +362 -0
  11. package/Azure.Core.Pipeline/bindings.json +450 -3
  12. package/Azure.Core.Pipeline/internal/index.d.ts +27 -4
  13. package/Azure.Core.Pipeline.d.ts +2 -2
  14. package/Azure.Core.Serialization/bindings.json +89 -1
  15. package/Azure.Core.Serialization/internal/index.d.ts +1 -0
  16. package/Azure.Core.d.ts +1 -1
  17. package/Azure.Identity/bindings.json +1039 -58
  18. package/Azure.Identity/internal/index.d.ts +51 -30
  19. package/Azure.Identity.d.ts +1 -1
  20. package/Azure.Messaging/bindings.json +69 -0
  21. package/Azure.Messaging/internal/index.d.ts +6 -1
  22. package/Azure.d.ts +1 -1
  23. package/Microsoft.Data/bindings.json +16 -0
  24. package/Microsoft.Data.Sql/bindings.json +16 -0
  25. package/Microsoft.Data.SqlClient/bindings.json +2482 -38
  26. package/Microsoft.Data.SqlClient/internal/index.d.ts +114 -22
  27. package/Microsoft.Data.SqlClient.DataClassification/bindings.json +66 -0
  28. package/Microsoft.Data.SqlClient.Diagnostics/bindings.json +639 -0
  29. package/Microsoft.Data.SqlClient.Server/bindings.json +163 -0
  30. package/Microsoft.Data.SqlTypes/bindings.json +73 -0
  31. package/Microsoft.EntityFrameworkCore/bindings.json +700 -2
  32. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +9 -2
  33. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +35 -0
  34. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +107 -1
  35. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +1 -0
  36. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +27 -0
  37. package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +78 -0
  38. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +853 -10
  39. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +85 -13
  40. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  41. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +10 -0
  42. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +917 -0
  43. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +56 -6
  44. package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +41 -0
  45. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +6 -5
  46. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/bindings.json +122 -0
  47. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +10 -2
  48. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.d.ts +1 -1
  49. package/Microsoft.EntityFrameworkCore.SqlServer.Diagnostics.Internal/bindings.json +28 -0
  50. package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal/bindings.json +27 -0
  51. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/bindings.json +421 -8
  52. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +34 -10
  53. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.d.ts +3 -2
  54. package/Microsoft.EntityFrameworkCore.SqlServer.Internal/bindings.json +87 -0
  55. package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/bindings.json +56 -0
  56. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/bindings.json +95 -0
  57. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +8 -2
  58. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal.d.ts +1 -1
  59. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/bindings.json +2415 -31
  60. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +209 -30
  61. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/bindings.json +39 -0
  62. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +8 -3
  63. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions.d.ts +2 -2
  64. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.d.ts +5 -5
  65. package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/bindings.json +32 -0
  66. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/bindings.json +1816 -67
  67. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +197 -27
  68. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.d.ts +2 -2
  69. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/bindings.json +397 -4
  70. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +38 -7
  71. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal.d.ts +3 -3
  72. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/bindings.json +138 -1
  73. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +16 -3
  74. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal.d.ts +3 -1
  75. package/Microsoft.EntityFrameworkCore.d.ts +1 -1
  76. package/Microsoft.Extensions.DependencyInjection/bindings.json +10 -0
  77. package/Microsoft.Identity.Client/bindings.json +1941 -39
  78. package/Microsoft.Identity.Client/internal/index.d.ts +94 -28
  79. package/Microsoft.Identity.Client.Advanced/bindings.json +5 -0
  80. package/Microsoft.Identity.Client.AppConfig/bindings.json +21 -0
  81. package/Microsoft.Identity.Client.AuthScheme/bindings.json +6 -0
  82. package/Microsoft.Identity.Client.AuthScheme.PoP/bindings.json +3 -0
  83. package/Microsoft.Identity.Client.Cache/bindings.json +34 -0
  84. package/Microsoft.Identity.Client.Extensibility/bindings.json +80 -10
  85. package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +6 -5
  86. package/Microsoft.Identity.Client.Extensions.Msal/bindings.json +117 -0
  87. package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +2 -1
  88. package/Microsoft.Identity.Client.Extensions.Msal.d.ts +1 -1
  89. package/Microsoft.Identity.Client.Kerberos/bindings.json +77 -0
  90. package/Microsoft.Identity.Client.ManagedIdentity/bindings.json +31 -0
  91. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/bindings.json +18 -1
  92. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -0
  93. package/Microsoft.Identity.Client.RP/bindings.json +10 -0
  94. package/Microsoft.Identity.Client.Region/bindings.json +29 -0
  95. package/Microsoft.Identity.Client.SSHCertificates/bindings.json +6 -0
  96. package/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/bindings.json +6 -0
  97. package/Microsoft.Identity.Client.Utils/bindings.json +10 -0
  98. package/Microsoft.Identity.Client.Utils.Windows/bindings.json +6 -0
  99. package/Microsoft.IdentityModel.Abstractions/bindings.json +135 -1
  100. package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +1 -0
  101. package/Microsoft.IdentityModel.JsonWebTokens/bindings.json +252 -6
  102. package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +12 -5
  103. package/Microsoft.IdentityModel.JsonWebTokens.d.ts +1 -1
  104. package/Microsoft.IdentityModel.Logging/bindings.json +122 -2
  105. package/Microsoft.IdentityModel.Logging/internal/index.d.ts +8 -3
  106. package/Microsoft.IdentityModel.Logging.d.ts +1 -1
  107. package/Microsoft.IdentityModel.Protocols/bindings.json +155 -1
  108. package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +1 -0
  109. package/Microsoft.IdentityModel.Protocols.Configuration/bindings.json +30 -0
  110. package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
  111. package/Microsoft.IdentityModel.Protocols.Configuration.d.ts +1 -1
  112. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/bindings.json +645 -0
  113. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +17 -2
  114. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/bindings.json +17 -0
  115. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.d.ts +1 -1
  116. package/Microsoft.IdentityModel.Tokens/bindings.json +2486 -77
  117. package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +135 -35
  118. package/Microsoft.IdentityModel.Tokens.Configuration/bindings.json +10 -0
  119. package/Microsoft.IdentityModel.Tokens.d.ts +1 -1
  120. package/Microsoft.SqlServer.Server/bindings.json +144 -0
  121. package/System/bindings.json +63 -0
  122. package/System.ClientModel/bindings.json +256 -11
  123. package/System.ClientModel/internal/index.d.ts +22 -6
  124. package/System.ClientModel.Primitives/bindings.json +1673 -120
  125. package/System.ClientModel.Primitives/internal/index.d.ts +111 -17
  126. package/System.ClientModel.Primitives.d.ts +2 -2
  127. package/System.Configuration/bindings.json +5382 -321
  128. package/System.Configuration/internal/index.d.ts +323 -51
  129. package/System.Configuration.Internal/bindings.json +193 -1
  130. package/System.Configuration.Provider/bindings.json +69 -1
  131. package/System.Configuration.Provider/internal/index.d.ts +3 -1
  132. package/System.Configuration.Provider.d.ts +1 -1
  133. package/System.Configuration.d.ts +3 -3
  134. package/System.Diagnostics/bindings.json +5 -0
  135. package/System.Drawing.Configuration/bindings.json +25 -0
  136. package/System.Drawing.Configuration/internal/index.d.ts +11 -3
  137. package/System.Drawing.Configuration.d.ts +5 -2
  138. package/System.IdentityModel.Tokens.Jwt/bindings.json +646 -36
  139. package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +33 -19
  140. package/System.Security.Cryptography/bindings.json +31 -0
  141. package/System.Text.Json.Serialization/bindings.json +10 -0
  142. package/package.json +1 -1
@@ -15,6 +15,9 @@
15
15
  "isSealed": false,
16
16
  "isStatic": false,
17
17
  "arity": 1,
18
+ "typeParameters": [
19
+ "T"
20
+ ],
18
21
  "methods": [
19
22
  {
20
23
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601::GetConfigurationAsync(System.Threading.CancellationToken):Task_1",
@@ -31,6 +34,7 @@
31
34
  "isVirtual": true,
32
35
  "isOverride": false,
33
36
  "isSealed": false,
37
+ "visibility": "Public",
34
38
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
35
39
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
36
40
  "isExtensionMethod": false
@@ -50,6 +54,7 @@
50
54
  "isVirtual": true,
51
55
  "isOverride": false,
52
56
  "isSealed": false,
57
+ "visibility": "Public",
53
58
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
54
59
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
55
60
  "isExtensionMethod": false
@@ -71,6 +76,9 @@
71
76
  "isSealed": false,
72
77
  "isStatic": false,
73
78
  "arity": 1,
79
+ "typeParameters": [
80
+ "T"
81
+ ],
74
82
  "methods": [
75
83
  {
76
84
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IConfigurationRetriever\u00601::GetConfigurationAsync(System.String,Microsoft.IdentityModel.Protocols.IDocumentRetriever,System.Threading.CancellationToken):Task_1",
@@ -87,6 +95,7 @@
87
95
  "isVirtual": true,
88
96
  "isOverride": false,
89
97
  "isSealed": false,
98
+ "visibility": "Public",
90
99
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationRetriever\u00601",
91
100
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
92
101
  "isExtensionMethod": false
@@ -108,6 +117,9 @@
108
117
  "isSealed": false,
109
118
  "isStatic": false,
110
119
  "arity": 1,
120
+ "typeParameters": [
121
+ "T"
122
+ ],
111
123
  "methods": [
112
124
  {
113
125
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IConfigurationValidator\u00601::Validate(T):Microsoft.IdentityModel.Protocols.ConfigurationValidationResult",
@@ -124,6 +136,7 @@
124
136
  "isVirtual": true,
125
137
  "isOverride": false,
126
138
  "isSealed": false,
139
+ "visibility": "Public",
127
140
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationValidator\u00601",
128
141
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
129
142
  "isExtensionMethod": false
@@ -161,6 +174,7 @@
161
174
  "isVirtual": true,
162
175
  "isOverride": false,
163
176
  "isSealed": false,
177
+ "visibility": "Public",
164
178
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IDocumentRetriever",
165
179
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
166
180
  "isExtensionMethod": false
@@ -182,6 +196,10 @@
182
196
  "isSealed": false,
183
197
  "isStatic": false,
184
198
  "arity": 0,
199
+ "baseType": {
200
+ "stableId": "System.Private.CoreLib:System.Object",
201
+ "clrName": "System.Object"
202
+ },
185
203
  "methods": [
186
204
  {
187
205
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage::BuildFormPost():System.String",
@@ -198,6 +216,7 @@
198
216
  "isVirtual": true,
199
217
  "isOverride": false,
200
218
  "isSealed": false,
219
+ "visibility": "Public",
201
220
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
202
221
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
203
222
  "isExtensionMethod": false
@@ -217,6 +236,7 @@
217
236
  "isVirtual": true,
218
237
  "isOverride": false,
219
238
  "isSealed": false,
239
+ "visibility": "Public",
220
240
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
221
241
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
222
242
  "isExtensionMethod": false
@@ -236,6 +256,7 @@
236
256
  "isVirtual": true,
237
257
  "isOverride": false,
238
258
  "isSealed": false,
259
+ "visibility": "Public",
239
260
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
240
261
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
241
262
  "isExtensionMethod": false
@@ -255,6 +276,7 @@
255
276
  "isVirtual": true,
256
277
  "isOverride": false,
257
278
  "isSealed": false,
279
+ "visibility": "Public",
258
280
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
259
281
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
260
282
  "isExtensionMethod": false
@@ -274,6 +296,7 @@
274
296
  "isVirtual": false,
275
297
  "isOverride": false,
276
298
  "isSealed": false,
299
+ "visibility": "Public",
277
300
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
278
301
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
279
302
  "isExtensionMethod": false
@@ -293,6 +316,7 @@
293
316
  "isVirtual": true,
294
317
  "isOverride": false,
295
318
  "isSealed": false,
319
+ "visibility": "Public",
296
320
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
297
321
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
298
322
  "isExtensionMethod": false
@@ -314,6 +338,7 @@
314
338
  "isAbstract": false,
315
339
  "isVirtual": false,
316
340
  "isOverride": false,
341
+ "visibility": "Public",
317
342
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
318
343
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
319
344
  },
@@ -332,6 +357,7 @@
332
357
  "isAbstract": false,
333
358
  "isVirtual": false,
334
359
  "isOverride": false,
360
+ "visibility": "Public",
335
361
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
336
362
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
337
363
  },
@@ -350,6 +376,7 @@
350
376
  "isAbstract": false,
351
377
  "isVirtual": false,
352
378
  "isOverride": false,
379
+ "visibility": "Public",
353
380
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
354
381
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
355
382
  },
@@ -368,6 +395,7 @@
368
395
  "isAbstract": false,
369
396
  "isVirtual": false,
370
397
  "isOverride": false,
398
+ "visibility": "Public",
371
399
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
372
400
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
373
401
  },
@@ -386,6 +414,7 @@
386
414
  "isAbstract": false,
387
415
  "isVirtual": false,
388
416
  "isOverride": false,
417
+ "visibility": "Public",
389
418
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
390
419
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
391
420
  },
@@ -404,13 +433,26 @@
404
433
  "isAbstract": false,
405
434
  "isVirtual": false,
406
435
  "isOverride": false,
436
+ "visibility": "Public",
407
437
  "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
408
438
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
409
439
  }
410
440
  ],
411
441
  "fields": [],
412
442
  "events": [],
413
- "constructors": []
443
+ "constructors": [
444
+ {
445
+ "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage::.ctor():void",
446
+ "metadataToken": 100663297,
447
+ "canonicalSignature": "():void",
448
+ "normalizedSignature": "constructor|():void|static=false",
449
+ "isStatic": false,
450
+ "parameterCount": 0,
451
+ "visibility": "Protected",
452
+ "declaringClrType": "Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage",
453
+ "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
454
+ }
455
+ ]
414
456
  },
415
457
  {
416
458
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
@@ -423,6 +465,22 @@
423
465
  "isSealed": false,
424
466
  "isStatic": false,
425
467
  "arity": 1,
468
+ "baseType": {
469
+ "stableId": "Microsoft.IdentityModel.Tokens:Microsoft.IdentityModel.Tokens.BaseConfigurationManager",
470
+ "clrName": "Microsoft.IdentityModel.Tokens.BaseConfigurationManager"
471
+ },
472
+ "interfaces": [
473
+ {
474
+ "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
475
+ "clrName": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
476
+ "typeArguments": [
477
+ "T"
478
+ ]
479
+ }
480
+ ],
481
+ "typeParameters": [
482
+ "T"
483
+ ],
426
484
  "methods": [
427
485
  {
428
486
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601::GetConfigurationAsync():Task_1",
@@ -439,6 +497,7 @@
439
497
  "isVirtual": false,
440
498
  "isOverride": false,
441
499
  "isSealed": false,
500
+ "visibility": "Public",
442
501
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
443
502
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
444
503
  "isExtensionMethod": false
@@ -458,6 +517,7 @@
458
517
  "isVirtual": true,
459
518
  "isOverride": false,
460
519
  "isSealed": true,
520
+ "visibility": "Public",
461
521
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
462
522
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
463
523
  "isExtensionMethod": false
@@ -477,6 +537,7 @@
477
537
  "isVirtual": true,
478
538
  "isOverride": true,
479
539
  "isSealed": false,
540
+ "visibility": "Public",
480
541
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
481
542
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
482
543
  "isExtensionMethod": false
@@ -496,6 +557,7 @@
496
557
  "isVirtual": true,
497
558
  "isOverride": true,
498
559
  "isSealed": false,
560
+ "visibility": "Public",
499
561
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
500
562
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
501
563
  "isExtensionMethod": false
@@ -515,6 +577,7 @@
515
577
  "isVirtual": true,
516
578
  "isOverride": false,
517
579
  "isSealed": false,
580
+ "visibility": "Public",
518
581
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
519
582
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
520
583
  "isExtensionMethod": false,
@@ -535,6 +598,7 @@
535
598
  "isVirtual": true,
536
599
  "isOverride": false,
537
600
  "isSealed": false,
601
+ "visibility": "Public",
538
602
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
539
603
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
540
604
  "isExtensionMethod": false,
@@ -555,6 +619,7 @@
555
619
  "isVirtual": true,
556
620
  "isOverride": false,
557
621
  "isSealed": false,
622
+ "visibility": "Public",
558
623
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
559
624
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
560
625
  "isExtensionMethod": false
@@ -570,6 +635,7 @@
570
635
  "isStatic": true,
571
636
  "isReadOnly": true,
572
637
  "isLiteral": false,
638
+ "visibility": "Public",
573
639
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
574
640
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
575
641
  },
@@ -581,6 +647,7 @@
581
647
  "isStatic": true,
582
648
  "isReadOnly": true,
583
649
  "isLiteral": false,
650
+ "visibility": "Public",
584
651
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
585
652
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
586
653
  },
@@ -592,6 +659,7 @@
592
659
  "isStatic": true,
593
660
  "isReadOnly": true,
594
661
  "isLiteral": false,
662
+ "visibility": "Public",
595
663
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
596
664
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
597
665
  },
@@ -603,6 +671,7 @@
603
671
  "isStatic": true,
604
672
  "isReadOnly": true,
605
673
  "isLiteral": false,
674
+ "visibility": "Public",
606
675
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
607
676
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
608
677
  }
@@ -616,6 +685,7 @@
616
685
  "normalizedSignature": "constructor|(System.String,IConfigurationRetriever_1):void|static=false",
617
686
  "isStatic": false,
618
687
  "parameterCount": 2,
688
+ "visibility": "Public",
619
689
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
620
690
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
621
691
  },
@@ -626,6 +696,7 @@
626
696
  "normalizedSignature": "constructor|(System.String,IConfigurationRetriever_1,System.Net.Http.HttpClient):void|static=false",
627
697
  "isStatic": false,
628
698
  "parameterCount": 3,
699
+ "visibility": "Public",
629
700
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
630
701
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
631
702
  },
@@ -636,6 +707,7 @@
636
707
  "normalizedSignature": "constructor|(System.String,IConfigurationRetriever_1,Microsoft.IdentityModel.Protocols.IDocumentRetriever):void|static=false",
637
708
  "isStatic": false,
638
709
  "parameterCount": 3,
710
+ "visibility": "Public",
639
711
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
640
712
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
641
713
  },
@@ -646,6 +718,7 @@
646
718
  "normalizedSignature": "constructor|(System.String,IConfigurationRetriever_1,Microsoft.IdentityModel.Protocols.IDocumentRetriever,Microsoft.IdentityModel.Protocols.Configuration.LastKnownGoodConfigurationCacheOptions):void|static=false",
647
719
  "isStatic": false,
648
720
  "parameterCount": 4,
721
+ "visibility": "Public",
649
722
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
650
723
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
651
724
  },
@@ -656,6 +729,7 @@
656
729
  "normalizedSignature": "constructor|(System.String,IConfigurationRetriever_1,Microsoft.IdentityModel.Protocols.IDocumentRetriever,IConfigurationValidator_1):void|static=false",
657
730
  "isStatic": false,
658
731
  "parameterCount": 4,
732
+ "visibility": "Public",
659
733
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
660
734
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
661
735
  },
@@ -666,6 +740,7 @@
666
740
  "normalizedSignature": "constructor|(System.String,IConfigurationRetriever_1,Microsoft.IdentityModel.Protocols.IDocumentRetriever,IConfigurationValidator_1,Microsoft.IdentityModel.Protocols.Configuration.LastKnownGoodConfigurationCacheOptions):void|static=false",
667
741
  "isStatic": false,
668
742
  "parameterCount": 5,
743
+ "visibility": "Public",
669
744
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationManager\u00601",
670
745
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
671
746
  }
@@ -682,6 +757,10 @@
682
757
  "isSealed": false,
683
758
  "isStatic": false,
684
759
  "arity": 0,
760
+ "baseType": {
761
+ "stableId": "System.Private.CoreLib:System.Object",
762
+ "clrName": "System.Object"
763
+ },
685
764
  "methods": [],
686
765
  "properties": [
687
766
  {
@@ -699,6 +778,7 @@
699
778
  "isAbstract": false,
700
779
  "isVirtual": false,
701
780
  "isOverride": false,
781
+ "visibility": "Public",
702
782
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationValidationResult",
703
783
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
704
784
  },
@@ -717,6 +797,7 @@
717
797
  "isAbstract": false,
718
798
  "isVirtual": false,
719
799
  "isOverride": false,
800
+ "visibility": "Public",
720
801
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationValidationResult",
721
802
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
722
803
  }
@@ -731,6 +812,7 @@
731
812
  "normalizedSignature": "constructor|():void|static=false",
732
813
  "isStatic": false,
733
814
  "parameterCount": 0,
815
+ "visibility": "Public",
734
816
  "declaringClrType": "Microsoft.IdentityModel.Protocols.ConfigurationValidationResult",
735
817
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
736
818
  }
@@ -747,6 +829,16 @@
747
829
  "isSealed": false,
748
830
  "isStatic": false,
749
831
  "arity": 0,
832
+ "baseType": {
833
+ "stableId": "System.Private.CoreLib:System.Object",
834
+ "clrName": "System.Object"
835
+ },
836
+ "interfaces": [
837
+ {
838
+ "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IDocumentRetriever",
839
+ "clrName": "Microsoft.IdentityModel.Protocols.IDocumentRetriever"
840
+ }
841
+ ],
750
842
  "methods": [
751
843
  {
752
844
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.FileDocumentRetriever::GetDocumentAsync(System.String,System.Threading.CancellationToken):System.Threading.Tasks.Task_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
@@ -763,6 +855,7 @@
763
855
  "isVirtual": true,
764
856
  "isOverride": false,
765
857
  "isSealed": true,
858
+ "visibility": "Public",
766
859
  "declaringClrType": "Microsoft.IdentityModel.Protocols.FileDocumentRetriever",
767
860
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
768
861
  "isExtensionMethod": false
@@ -782,6 +875,7 @@
782
875
  "isVirtual": true,
783
876
  "isOverride": false,
784
877
  "isSealed": false,
878
+ "visibility": "Public",
785
879
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IDocumentRetriever",
786
880
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
787
881
  "isExtensionMethod": false,
@@ -799,6 +893,7 @@
799
893
  "normalizedSignature": "constructor|():void|static=false",
800
894
  "isStatic": false,
801
895
  "parameterCount": 0,
896
+ "visibility": "Public",
802
897
  "declaringClrType": "Microsoft.IdentityModel.Protocols.FileDocumentRetriever",
803
898
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
804
899
  }
@@ -815,6 +910,16 @@
815
910
  "isSealed": false,
816
911
  "isStatic": false,
817
912
  "arity": 0,
913
+ "baseType": {
914
+ "stableId": "System.Private.CoreLib:System.Object",
915
+ "clrName": "System.Object"
916
+ },
917
+ "interfaces": [
918
+ {
919
+ "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IDocumentRetriever",
920
+ "clrName": "Microsoft.IdentityModel.Protocols.IDocumentRetriever"
921
+ }
922
+ ],
818
923
  "methods": [
819
924
  {
820
925
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.HttpDocumentRetriever::GetDocumentAsync(System.String,System.Threading.CancellationToken):System.Threading.Tasks.Task_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
@@ -831,6 +936,7 @@
831
936
  "isVirtual": true,
832
937
  "isOverride": false,
833
938
  "isSealed": true,
939
+ "visibility": "Public",
834
940
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
835
941
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
836
942
  "isExtensionMethod": false
@@ -850,6 +956,7 @@
850
956
  "isVirtual": true,
851
957
  "isOverride": false,
852
958
  "isSealed": false,
959
+ "visibility": "Public",
853
960
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IDocumentRetriever",
854
961
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
855
962
  "isExtensionMethod": false,
@@ -872,6 +979,7 @@
872
979
  "isAbstract": false,
873
980
  "isVirtual": false,
874
981
  "isOverride": false,
982
+ "visibility": "Public",
875
983
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
876
984
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
877
985
  },
@@ -890,6 +998,7 @@
890
998
  "isAbstract": false,
891
999
  "isVirtual": false,
892
1000
  "isOverride": false,
1001
+ "visibility": "Public",
893
1002
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
894
1003
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
895
1004
  },
@@ -908,6 +1017,7 @@
908
1017
  "isAbstract": false,
909
1018
  "isVirtual": false,
910
1019
  "isOverride": false,
1020
+ "visibility": "Public",
911
1021
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
912
1022
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
913
1023
  }
@@ -921,6 +1031,7 @@
921
1031
  "isStatic": true,
922
1032
  "isReadOnly": false,
923
1033
  "isLiteral": true,
1034
+ "visibility": "Public",
924
1035
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
925
1036
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
926
1037
  },
@@ -932,6 +1043,7 @@
932
1043
  "isStatic": true,
933
1044
  "isReadOnly": false,
934
1045
  "isLiteral": true,
1046
+ "visibility": "Public",
935
1047
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
936
1048
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
937
1049
  }
@@ -945,6 +1057,7 @@
945
1057
  "normalizedSignature": "constructor|():void|static=false",
946
1058
  "isStatic": false,
947
1059
  "parameterCount": 0,
1060
+ "visibility": "Public",
948
1061
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
949
1062
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
950
1063
  },
@@ -955,6 +1068,7 @@
955
1068
  "normalizedSignature": "constructor|(System.Net.Http.HttpClient):void|static=false",
956
1069
  "isStatic": false,
957
1070
  "parameterCount": 1,
1071
+ "visibility": "Public",
958
1072
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpDocumentRetriever",
959
1073
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
960
1074
  }
@@ -971,6 +1085,10 @@
971
1085
  "isSealed": false,
972
1086
  "isStatic": false,
973
1087
  "arity": 0,
1088
+ "baseType": {
1089
+ "stableId": "System.Private.CoreLib:System.Object",
1090
+ "clrName": "System.Object"
1091
+ },
974
1092
  "methods": [
975
1093
  {
976
1094
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.HttpRequestData::AppendHeaders(System.Net.Http.Headers.HttpHeaders):System.Void",
@@ -987,6 +1105,7 @@
987
1105
  "isVirtual": false,
988
1106
  "isOverride": false,
989
1107
  "isSealed": false,
1108
+ "visibility": "Public",
990
1109
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
991
1110
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
992
1111
  "isExtensionMethod": false
@@ -1008,6 +1127,7 @@
1008
1127
  "isAbstract": false,
1009
1128
  "isVirtual": false,
1010
1129
  "isOverride": false,
1130
+ "visibility": "Public",
1011
1131
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1012
1132
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1013
1133
  },
@@ -1026,6 +1146,7 @@
1026
1146
  "isAbstract": false,
1027
1147
  "isVirtual": false,
1028
1148
  "isOverride": false,
1149
+ "visibility": "Public",
1029
1150
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1030
1151
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1031
1152
  },
@@ -1044,6 +1165,7 @@
1044
1165
  "isAbstract": false,
1045
1166
  "isVirtual": false,
1046
1167
  "isOverride": false,
1168
+ "visibility": "Public",
1047
1169
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1048
1170
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1049
1171
  },
@@ -1062,6 +1184,7 @@
1062
1184
  "isAbstract": false,
1063
1185
  "isVirtual": false,
1064
1186
  "isOverride": false,
1187
+ "visibility": "Public",
1065
1188
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1066
1189
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1067
1190
  },
@@ -1080,6 +1203,7 @@
1080
1203
  "isAbstract": false,
1081
1204
  "isVirtual": false,
1082
1205
  "isOverride": false,
1206
+ "visibility": "Public",
1083
1207
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1084
1208
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1085
1209
  },
@@ -1098,6 +1222,7 @@
1098
1222
  "isAbstract": false,
1099
1223
  "isVirtual": false,
1100
1224
  "isOverride": false,
1225
+ "visibility": "Public",
1101
1226
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1102
1227
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1103
1228
  }
@@ -1112,6 +1237,7 @@
1112
1237
  "normalizedSignature": "constructor|():void|static=false",
1113
1238
  "isStatic": false,
1114
1239
  "parameterCount": 0,
1240
+ "visibility": "Public",
1115
1241
  "declaringClrType": "Microsoft.IdentityModel.Protocols.HttpRequestData",
1116
1242
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1117
1243
  }
@@ -1128,6 +1254,22 @@
1128
1254
  "isSealed": false,
1129
1255
  "isStatic": false,
1130
1256
  "arity": 1,
1257
+ "baseType": {
1258
+ "stableId": "Microsoft.IdentityModel.Tokens:Microsoft.IdentityModel.Tokens.BaseConfigurationManager",
1259
+ "clrName": "Microsoft.IdentityModel.Tokens.BaseConfigurationManager"
1260
+ },
1261
+ "interfaces": [
1262
+ {
1263
+ "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
1264
+ "clrName": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
1265
+ "typeArguments": [
1266
+ "T"
1267
+ ]
1268
+ }
1269
+ ],
1270
+ "typeParameters": [
1271
+ "T"
1272
+ ],
1131
1273
  "methods": [
1132
1274
  {
1133
1275
  "stableId": "Microsoft.IdentityModel.Protocols:Microsoft.IdentityModel.Protocols.StaticConfigurationManager\u00601::GetConfigurationAsync(System.Threading.CancellationToken):Task_1",
@@ -1144,6 +1286,7 @@
1144
1286
  "isVirtual": true,
1145
1287
  "isOverride": false,
1146
1288
  "isSealed": true,
1289
+ "visibility": "Public",
1147
1290
  "declaringClrType": "Microsoft.IdentityModel.Protocols.StaticConfigurationManager\u00601",
1148
1291
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
1149
1292
  "isExtensionMethod": false
@@ -1163,6 +1306,7 @@
1163
1306
  "isVirtual": true,
1164
1307
  "isOverride": true,
1165
1308
  "isSealed": false,
1309
+ "visibility": "Public",
1166
1310
  "declaringClrType": "Microsoft.IdentityModel.Protocols.StaticConfigurationManager\u00601",
1167
1311
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
1168
1312
  "isExtensionMethod": false
@@ -1182,6 +1326,7 @@
1182
1326
  "isVirtual": true,
1183
1327
  "isOverride": true,
1184
1328
  "isSealed": false,
1329
+ "visibility": "Public",
1185
1330
  "declaringClrType": "Microsoft.IdentityModel.Protocols.StaticConfigurationManager\u00601",
1186
1331
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
1187
1332
  "isExtensionMethod": false
@@ -1201,6 +1346,7 @@
1201
1346
  "isVirtual": true,
1202
1347
  "isOverride": false,
1203
1348
  "isSealed": false,
1349
+ "visibility": "Public",
1204
1350
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
1205
1351
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
1206
1352
  "isExtensionMethod": false,
@@ -1221,6 +1367,7 @@
1221
1367
  "isVirtual": true,
1222
1368
  "isOverride": false,
1223
1369
  "isSealed": false,
1370
+ "visibility": "Public",
1224
1371
  "declaringClrType": "Microsoft.IdentityModel.Protocols.IConfigurationManager\u00601",
1225
1372
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
1226
1373
  "isExtensionMethod": false,
@@ -1241,6 +1388,7 @@
1241
1388
  "isVirtual": true,
1242
1389
  "isOverride": false,
1243
1390
  "isSealed": false,
1391
+ "visibility": "Public",
1244
1392
  "declaringClrType": "Microsoft.IdentityModel.Protocols.StaticConfigurationManager\u00601",
1245
1393
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols",
1246
1394
  "isExtensionMethod": false
@@ -1257,6 +1405,7 @@
1257
1405
  "normalizedSignature": "constructor|(T):void|static=false",
1258
1406
  "isStatic": false,
1259
1407
  "parameterCount": 1,
1408
+ "visibility": "Public",
1260
1409
  "declaringClrType": "Microsoft.IdentityModel.Protocols.StaticConfigurationManager\u00601",
1261
1410
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1262
1411
  }
@@ -1273,6 +1422,10 @@
1273
1422
  "isSealed": false,
1274
1423
  "isStatic": false,
1275
1424
  "arity": 0,
1425
+ "baseType": {
1426
+ "stableId": "System.Private.CoreLib:System.Object",
1427
+ "clrName": "System.Object"
1428
+ },
1276
1429
  "methods": [],
1277
1430
  "properties": [],
1278
1431
  "fields": [],
@@ -1285,6 +1438,7 @@
1285
1438
  "normalizedSignature": "constructor|():void|static=false",
1286
1439
  "isStatic": false,
1287
1440
  "parameterCount": 0,
1441
+ "visibility": "Public",
1288
1442
  "declaringClrType": "Microsoft.IdentityModel.Protocols.X509CertificateValidationMode",
1289
1443
  "declaringAssemblyName": "Microsoft.IdentityModel.Protocols"
1290
1444
  }
@@ -65,6 +65,7 @@ export interface AuthenticationProtocolMessage$instance {
65
65
 
66
66
 
67
67
  export const AuthenticationProtocolMessage: {
68
+ new(): AuthenticationProtocolMessage;
68
69
  };
69
70
 
70
71