@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,19 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 1,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.ValueType",
20
+ "clrName": "System.ValueType"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "System.Data.Common:System.Data.SqlTypes.INullable",
25
+ "clrName": "System.Data.SqlTypes.INullable"
26
+ }
27
+ ],
28
+ "typeParameters": [
29
+ "T"
30
+ ],
18
31
  "methods": [
19
32
  {
20
33
  "stableId": "Microsoft.Data.SqlClient:Microsoft.Data.SqlTypes.SqlVector\u00601::CreateNull(System.Int32):SqlVector_1",
@@ -31,6 +44,7 @@
31
44
  "isVirtual": false,
32
45
  "isOverride": false,
33
46
  "isSealed": false,
47
+ "visibility": "Public",
34
48
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlVector\u00601",
35
49
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
36
50
  "isExtensionMethod": false
@@ -52,6 +66,7 @@
52
66
  "isAbstract": false,
53
67
  "isVirtual": true,
54
68
  "isOverride": false,
69
+ "visibility": "Public",
55
70
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlVector\u00601",
56
71
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
57
72
  },
@@ -70,6 +85,7 @@
70
85
  "isAbstract": false,
71
86
  "isVirtual": false,
72
87
  "isOverride": false,
88
+ "visibility": "Public",
73
89
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlVector\u00601",
74
90
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
75
91
  },
@@ -88,6 +104,7 @@
88
104
  "isAbstract": false,
89
105
  "isVirtual": false,
90
106
  "isOverride": false,
107
+ "visibility": "Public",
91
108
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlVector\u00601",
92
109
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
93
110
  },
@@ -106,6 +123,7 @@
106
123
  "isAbstract": false,
107
124
  "isVirtual": false,
108
125
  "isOverride": false,
126
+ "visibility": "Public",
109
127
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlVector\u00601",
110
128
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
111
129
  }
@@ -120,6 +138,7 @@
120
138
  "normalizedSignature": "constructor|(ReadOnlyMemory_1):void|static=false",
121
139
  "isStatic": false,
122
140
  "parameterCount": 1,
141
+ "visibility": "Public",
123
142
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlVector\u00601",
124
143
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
125
144
  }
@@ -136,6 +155,20 @@
136
155
  "isSealed": true,
137
156
  "isStatic": false,
138
157
  "arity": 0,
158
+ "baseType": {
159
+ "stableId": "System.Private.CoreLib:System.IO.Stream",
160
+ "clrName": "System.IO.Stream"
161
+ },
162
+ "interfaces": [
163
+ {
164
+ "stableId": "System.Private.CoreLib:System.IDisposable",
165
+ "clrName": "System.IDisposable"
166
+ },
167
+ {
168
+ "stableId": "System.Private.CoreLib:System.IAsyncDisposable",
169
+ "clrName": "System.IAsyncDisposable"
170
+ }
171
+ ],
139
172
  "methods": [
140
173
  {
141
174
  "stableId": "Microsoft.Data.SqlClient:Microsoft.Data.SqlTypes.SqlFileStream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object):System.IAsyncResult",
@@ -152,6 +185,7 @@
152
185
  "isVirtual": true,
153
186
  "isOverride": true,
154
187
  "isSealed": false,
188
+ "visibility": "Public",
155
189
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
156
190
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
157
191
  "isExtensionMethod": false
@@ -171,6 +205,7 @@
171
205
  "isVirtual": true,
172
206
  "isOverride": true,
173
207
  "isSealed": false,
208
+ "visibility": "Public",
174
209
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
175
210
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
176
211
  "isExtensionMethod": false
@@ -190,6 +225,7 @@
190
225
  "isVirtual": true,
191
226
  "isOverride": true,
192
227
  "isSealed": false,
228
+ "visibility": "Public",
193
229
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
194
230
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
195
231
  "isExtensionMethod": false
@@ -209,6 +245,7 @@
209
245
  "isVirtual": true,
210
246
  "isOverride": true,
211
247
  "isSealed": false,
248
+ "visibility": "Public",
212
249
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
213
250
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
214
251
  "isExtensionMethod": false
@@ -228,6 +265,7 @@
228
265
  "isVirtual": true,
229
266
  "isOverride": true,
230
267
  "isSealed": false,
268
+ "visibility": "Public",
231
269
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
232
270
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
233
271
  "isExtensionMethod": false
@@ -247,6 +285,7 @@
247
285
  "isVirtual": true,
248
286
  "isOverride": true,
249
287
  "isSealed": false,
288
+ "visibility": "Public",
250
289
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
251
290
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
252
291
  "isExtensionMethod": false
@@ -266,6 +305,7 @@
266
305
  "isVirtual": true,
267
306
  "isOverride": true,
268
307
  "isSealed": false,
308
+ "visibility": "Public",
269
309
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
270
310
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
271
311
  "isExtensionMethod": false
@@ -285,6 +325,7 @@
285
325
  "isVirtual": true,
286
326
  "isOverride": true,
287
327
  "isSealed": false,
328
+ "visibility": "Public",
288
329
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
289
330
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
290
331
  "isExtensionMethod": false
@@ -304,6 +345,7 @@
304
345
  "isVirtual": true,
305
346
  "isOverride": true,
306
347
  "isSealed": false,
348
+ "visibility": "Public",
307
349
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
308
350
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
309
351
  "isExtensionMethod": false
@@ -323,6 +365,7 @@
323
365
  "isVirtual": true,
324
366
  "isOverride": true,
325
367
  "isSealed": false,
368
+ "visibility": "Public",
326
369
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
327
370
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
328
371
  "isExtensionMethod": false
@@ -342,6 +385,7 @@
342
385
  "isVirtual": true,
343
386
  "isOverride": true,
344
387
  "isSealed": false,
388
+ "visibility": "Public",
345
389
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
346
390
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
347
391
  "isExtensionMethod": false
@@ -363,6 +407,7 @@
363
407
  "isAbstract": false,
364
408
  "isVirtual": true,
365
409
  "isOverride": true,
410
+ "visibility": "Public",
366
411
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
367
412
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
368
413
  },
@@ -381,6 +426,7 @@
381
426
  "isAbstract": false,
382
427
  "isVirtual": true,
383
428
  "isOverride": true,
429
+ "visibility": "Public",
384
430
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
385
431
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
386
432
  },
@@ -399,6 +445,7 @@
399
445
  "isAbstract": false,
400
446
  "isVirtual": true,
401
447
  "isOverride": true,
448
+ "visibility": "Public",
402
449
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
403
450
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
404
451
  },
@@ -417,6 +464,7 @@
417
464
  "isAbstract": false,
418
465
  "isVirtual": true,
419
466
  "isOverride": true,
467
+ "visibility": "Public",
420
468
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
421
469
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
422
470
  },
@@ -435,6 +483,7 @@
435
483
  "isAbstract": false,
436
484
  "isVirtual": true,
437
485
  "isOverride": true,
486
+ "visibility": "Public",
438
487
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
439
488
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
440
489
  },
@@ -453,6 +502,7 @@
453
502
  "isAbstract": false,
454
503
  "isVirtual": false,
455
504
  "isOverride": false,
505
+ "visibility": "Public",
456
506
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
457
507
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
458
508
  },
@@ -471,6 +521,7 @@
471
521
  "isAbstract": false,
472
522
  "isVirtual": true,
473
523
  "isOverride": true,
524
+ "visibility": "Public",
474
525
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
475
526
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
476
527
  },
@@ -489,6 +540,7 @@
489
540
  "isAbstract": false,
490
541
  "isVirtual": true,
491
542
  "isOverride": true,
543
+ "visibility": "Public",
492
544
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
493
545
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
494
546
  },
@@ -507,6 +559,7 @@
507
559
  "isAbstract": false,
508
560
  "isVirtual": false,
509
561
  "isOverride": false,
562
+ "visibility": "Public",
510
563
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
511
564
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
512
565
  },
@@ -525,6 +578,7 @@
525
578
  "isAbstract": false,
526
579
  "isVirtual": true,
527
580
  "isOverride": true,
581
+ "visibility": "Public",
528
582
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
529
583
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
530
584
  }
@@ -539,6 +593,7 @@
539
593
  "normalizedSignature": "constructor|(System.String,System.Byte[],System.IO.FileAccess):void|static=false",
540
594
  "isStatic": false,
541
595
  "parameterCount": 3,
596
+ "visibility": "Public",
542
597
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
543
598
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
544
599
  },
@@ -549,6 +604,7 @@
549
604
  "normalizedSignature": "constructor|(System.String,System.Byte[],System.IO.FileAccess,System.IO.FileOptions,System.Int64):void|static=false",
550
605
  "isStatic": false,
551
606
  "parameterCount": 5,
607
+ "visibility": "Public",
552
608
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlFileStream",
553
609
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
554
610
  }
@@ -565,6 +621,16 @@
565
621
  "isSealed": false,
566
622
  "isStatic": false,
567
623
  "arity": 0,
624
+ "baseType": {
625
+ "stableId": "System.Private.CoreLib:System.Object",
626
+ "clrName": "System.Object"
627
+ },
628
+ "interfaces": [
629
+ {
630
+ "stableId": "System.Data.Common:System.Data.SqlTypes.INullable",
631
+ "clrName": "System.Data.SqlTypes.INullable"
632
+ }
633
+ ],
568
634
  "methods": [
569
635
  {
570
636
  "stableId": "Microsoft.Data.SqlClient:Microsoft.Data.SqlTypes.SqlJson::ToString():System.String",
@@ -581,6 +647,7 @@
581
647
  "isVirtual": true,
582
648
  "isOverride": true,
583
649
  "isSealed": false,
650
+ "visibility": "Public",
584
651
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
585
652
  "declaringAssemblyName": "Microsoft.Data.SqlClient",
586
653
  "isExtensionMethod": false
@@ -602,6 +669,7 @@
602
669
  "isAbstract": false,
603
670
  "isVirtual": true,
604
671
  "isOverride": false,
672
+ "visibility": "Public",
605
673
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
606
674
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
607
675
  },
@@ -620,6 +688,7 @@
620
688
  "isAbstract": false,
621
689
  "isVirtual": false,
622
690
  "isOverride": false,
691
+ "visibility": "Public",
623
692
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
624
693
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
625
694
  },
@@ -638,6 +707,7 @@
638
707
  "isAbstract": false,
639
708
  "isVirtual": false,
640
709
  "isOverride": false,
710
+ "visibility": "Public",
641
711
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
642
712
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
643
713
  }
@@ -652,6 +722,7 @@
652
722
  "normalizedSignature": "constructor|():void|static=false",
653
723
  "isStatic": false,
654
724
  "parameterCount": 0,
725
+ "visibility": "Public",
655
726
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
656
727
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
657
728
  },
@@ -662,6 +733,7 @@
662
733
  "normalizedSignature": "constructor|(System.String):void|static=false",
663
734
  "isStatic": false,
664
735
  "parameterCount": 1,
736
+ "visibility": "Public",
665
737
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
666
738
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
667
739
  },
@@ -672,6 +744,7 @@
672
744
  "normalizedSignature": "constructor|(System.Text.Json.JsonDocument):void|static=false",
673
745
  "isStatic": false,
674
746
  "parameterCount": 1,
747
+ "visibility": "Public",
675
748
  "declaringClrType": "Microsoft.Data.SqlTypes.SqlJson",
676
749
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
677
750
  }