@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,10 @@
15
15
  "isSealed": false,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.Object",
20
+ "clrName": "System.Object"
21
+ },
18
22
  "methods": [
19
23
  {
20
24
  "stableId": "System.Configuration.ConfigurationManager:System.Configuration.Provider.ProviderBase::Initialize(System.String,System.Collections.Specialized.NameValueCollection):System.Void",
@@ -31,6 +35,7 @@
31
35
  "isVirtual": true,
32
36
  "isOverride": false,
33
37
  "isSealed": false,
38
+ "visibility": "Public",
34
39
  "declaringClrType": "System.Configuration.Provider.ProviderBase",
35
40
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
36
41
  "isExtensionMethod": false
@@ -52,6 +57,7 @@
52
57
  "isAbstract": false,
53
58
  "isVirtual": true,
54
59
  "isOverride": false,
60
+ "visibility": "Public",
55
61
  "declaringClrType": "System.Configuration.Provider.ProviderBase",
56
62
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
57
63
  },
@@ -70,13 +76,26 @@
70
76
  "isAbstract": false,
71
77
  "isVirtual": true,
72
78
  "isOverride": false,
79
+ "visibility": "Public",
73
80
  "declaringClrType": "System.Configuration.Provider.ProviderBase",
74
81
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
75
82
  }
76
83
  ],
77
84
  "fields": [],
78
85
  "events": [],
79
- "constructors": []
86
+ "constructors": [
87
+ {
88
+ "stableId": "System.Configuration.ConfigurationManager:System.Configuration.Provider.ProviderBase::.ctor():void",
89
+ "metadataToken": 100665642,
90
+ "canonicalSignature": "():void",
91
+ "normalizedSignature": "constructor|():void|static=false",
92
+ "isStatic": false,
93
+ "parameterCount": 0,
94
+ "visibility": "Protected",
95
+ "declaringClrType": "System.Configuration.Provider.ProviderBase",
96
+ "declaringAssemblyName": "System.Configuration.ConfigurationManager"
97
+ }
98
+ ]
80
99
  },
81
100
  {
82
101
  "stableId": "System.Configuration.ConfigurationManager:System.Configuration.Provider.ProviderCollection",
@@ -89,6 +108,20 @@
89
108
  "isSealed": false,
90
109
  "isStatic": false,
91
110
  "arity": 0,
111
+ "baseType": {
112
+ "stableId": "System.Private.CoreLib:System.Object",
113
+ "clrName": "System.Object"
114
+ },
115
+ "interfaces": [
116
+ {
117
+ "stableId": "System.Private.CoreLib:System.Collections.ICollection",
118
+ "clrName": "System.Collections.ICollection"
119
+ },
120
+ {
121
+ "stableId": "System.Private.CoreLib:System.Collections.IEnumerable",
122
+ "clrName": "System.Collections.IEnumerable"
123
+ }
124
+ ],
92
125
  "methods": [
93
126
  {
94
127
  "stableId": "System.Configuration.ConfigurationManager:System.Configuration.Provider.ProviderCollection::GetEnumerator():System.Collections.IEnumerator",
@@ -105,6 +138,7 @@
105
138
  "isVirtual": true,
106
139
  "isOverride": false,
107
140
  "isSealed": true,
141
+ "visibility": "Public",
108
142
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
109
143
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
110
144
  "isExtensionMethod": false
@@ -124,6 +158,7 @@
124
158
  "isVirtual": true,
125
159
  "isOverride": false,
126
160
  "isSealed": false,
161
+ "visibility": "Public",
127
162
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
128
163
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
129
164
  "isExtensionMethod": false
@@ -143,6 +178,7 @@
143
178
  "isVirtual": false,
144
179
  "isOverride": false,
145
180
  "isSealed": false,
181
+ "visibility": "Public",
146
182
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
147
183
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
148
184
  "isExtensionMethod": false
@@ -162,6 +198,7 @@
162
198
  "isVirtual": false,
163
199
  "isOverride": false,
164
200
  "isSealed": false,
201
+ "visibility": "Public",
165
202
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
166
203
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
167
204
  "isExtensionMethod": false
@@ -181,6 +218,7 @@
181
218
  "isVirtual": false,
182
219
  "isOverride": false,
183
220
  "isSealed": false,
221
+ "visibility": "Public",
184
222
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
185
223
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
186
224
  "isExtensionMethod": false
@@ -200,6 +238,7 @@
200
238
  "isVirtual": false,
201
239
  "isOverride": false,
202
240
  "isSealed": false,
241
+ "visibility": "Public",
203
242
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
204
243
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
205
244
  "isExtensionMethod": false
@@ -221,6 +260,7 @@
221
260
  "isAbstract": false,
222
261
  "isVirtual": false,
223
262
  "isOverride": false,
263
+ "visibility": "Public",
224
264
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
225
265
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
226
266
  },
@@ -239,6 +279,7 @@
239
279
  "isAbstract": false,
240
280
  "isVirtual": true,
241
281
  "isOverride": false,
282
+ "visibility": "Public",
242
283
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
243
284
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
244
285
  },
@@ -257,6 +298,7 @@
257
298
  "isAbstract": false,
258
299
  "isVirtual": true,
259
300
  "isOverride": false,
301
+ "visibility": "Public",
260
302
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
261
303
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
262
304
  },
@@ -275,6 +317,7 @@
275
317
  "isAbstract": false,
276
318
  "isVirtual": true,
277
319
  "isOverride": false,
320
+ "visibility": "Public",
278
321
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
279
322
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
280
323
  }
@@ -289,6 +332,7 @@
289
332
  "normalizedSignature": "constructor|():void|static=false",
290
333
  "isStatic": false,
291
334
  "parameterCount": 0,
335
+ "visibility": "Public",
292
336
  "declaringClrType": "System.Configuration.Provider.ProviderCollection",
293
337
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
294
338
  }
@@ -305,6 +349,16 @@
305
349
  "isSealed": false,
306
350
  "isStatic": false,
307
351
  "arity": 0,
352
+ "baseType": {
353
+ "stableId": "System.Private.CoreLib:System.Exception",
354
+ "clrName": "System.Exception"
355
+ },
356
+ "interfaces": [
357
+ {
358
+ "stableId": "System.Private.CoreLib:System.Runtime.Serialization.ISerializable",
359
+ "clrName": "System.Runtime.Serialization.ISerializable"
360
+ }
361
+ ],
308
362
  "methods": [],
309
363
  "properties": [],
310
364
  "fields": [],
@@ -317,6 +371,7 @@
317
371
  "normalizedSignature": "constructor|():void|static=false",
318
372
  "isStatic": false,
319
373
  "parameterCount": 0,
374
+ "visibility": "Public",
320
375
  "declaringClrType": "System.Configuration.Provider.ProviderException",
321
376
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
322
377
  },
@@ -327,6 +382,7 @@
327
382
  "normalizedSignature": "constructor|(System.String):void|static=false",
328
383
  "isStatic": false,
329
384
  "parameterCount": 1,
385
+ "visibility": "Public",
330
386
  "declaringClrType": "System.Configuration.Provider.ProviderException",
331
387
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
332
388
  },
@@ -337,6 +393,18 @@
337
393
  "normalizedSignature": "constructor|(System.String,System.Exception):void|static=false",
338
394
  "isStatic": false,
339
395
  "parameterCount": 2,
396
+ "visibility": "Public",
397
+ "declaringClrType": "System.Configuration.Provider.ProviderException",
398
+ "declaringAssemblyName": "System.Configuration.ConfigurationManager"
399
+ },
400
+ {
401
+ "stableId": "System.Configuration.ConfigurationManager:System.Configuration.Provider.ProviderException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):void",
402
+ "metadataToken": 100665658,
403
+ "canonicalSignature": "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):void",
404
+ "normalizedSignature": "constructor|(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):void|static=false",
405
+ "isStatic": false,
406
+ "parameterCount": 2,
407
+ "visibility": "Protected",
340
408
  "declaringClrType": "System.Configuration.Provider.ProviderException",
341
409
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
342
410
  }
@@ -12,7 +12,7 @@ import type { NameValueCollection } from "@tsonic/dotnet/System.Collections.Spec
12
12
  import * as System_Internal from "@tsonic/dotnet/System.js";
13
13
  import type { Boolean as ClrBoolean, Exception, Int32, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
14
14
  import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization.js";
15
- import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization.js";
15
+ import type { ISerializable, SerializationInfo, StreamingContext } from "@tsonic/dotnet/System.Runtime.Serialization.js";
16
16
 
17
17
  export interface ProviderBase$instance {
18
18
  readonly Description: string;
@@ -22,6 +22,7 @@ export interface ProviderBase$instance {
22
22
 
23
23
 
24
24
  export const ProviderBase: {
25
+ new(): ProviderBase;
25
26
  };
26
27
 
27
28
 
@@ -56,6 +57,7 @@ export const ProviderException: {
56
57
  new(): ProviderException;
57
58
  new(message: string): ProviderException;
58
59
  new(message: string, innerException: Exception): ProviderException;
60
+ new(info: SerializationInfo, context: StreamingContext): ProviderException;
59
61
  };
60
62
 
61
63
 
@@ -9,7 +9,7 @@ import * as Internal from './System.Configuration.Provider/internal/index.js';
9
9
  import type { ICollection, IEnumerable, IEnumerator } from '@tsonic/dotnet/System.Collections.js';
10
10
  import type { NameValueCollection } from '@tsonic/dotnet/System.Collections.Specialized.js';
11
11
  import type { Boolean as ClrBoolean, Exception, Int32, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
12
- import type { ISerializable } from '@tsonic/dotnet/System.Runtime.Serialization.js';
12
+ import type { ISerializable, SerializationInfo, StreamingContext } from '@tsonic/dotnet/System.Runtime.Serialization.js';
13
13
 
14
14
  // Public API exports (curated - no internal $instance/$views leakage)
15
15
  export { ProviderBase as ProviderBase } from './System.Configuration.Provider/internal/index.js';
@@ -9,15 +9,15 @@ import * as Internal from './System.Configuration/internal/index.js';
9
9
  import type { IConfigErrorInfo } from './System.Configuration.Internal/internal/index.js';
10
10
  import type { ProviderBase, ProviderCollection } from './System.Configuration.Provider/internal/index.js';
11
11
  import type { UriIdnScope } from './System/internal/index.js';
12
- import type { Hashtable, ICollection, IDictionary, IEnumerable, IEnumerator, IList, ReadOnlyCollectionBase } from '@tsonic/dotnet/System.Collections.js';
12
+ import type { Hashtable, ICollection, IComparer, IDictionary, IEnumerable, IEnumerator, IList, ReadOnlyCollectionBase } from '@tsonic/dotnet/System.Collections.js';
13
13
  import type { NameObjectCollectionBase, NameValueCollection, StringCollection } from '@tsonic/dotnet/System.Collections.Specialized.js';
14
- import type { CancelEventArgs, INotifyPropertyChanged, ITypeDescriptorContext, PropertyChangedEventHandler, TypeConverter } from '@tsonic/dotnet/System.ComponentModel.js';
14
+ import type { CancelEventArgs, IComponent, INotifyPropertyChanged, ITypeDescriptorContext, PropertyChangedEventArgs, PropertyChangedEventHandler, TypeConverter } from '@tsonic/dotnet/System.ComponentModel.js';
15
15
  import type { CultureInfo } from '@tsonic/dotnet/System.Globalization.js';
16
16
  import type { Array as ClrArray, AsyncCallback, Attribute, Boolean as ClrBoolean, Enum, EventArgs, Exception, Func, GenericUriParserOptions, IAsyncResult, ICloneable, IComparable, IConvertible, IFormattable, Int32, Int64, IntPtr, ISpanFormattable, MulticastDelegate, Object as ClrObject, String as ClrString, SystemException, TimeSpan, Type, Void } from '@tsonic/dotnet/System.js';
17
17
  import type { IDeserializationCallback, ISerializable, SerializationInfo, StreamingContext } from '@tsonic/dotnet/System.Runtime.Serialization.js';
18
18
  import type { FrameworkName } from '@tsonic/dotnet/System.Runtime.Versioning.js';
19
19
  import type { RSAParameters } from '@tsonic/dotnet/System.Security.Cryptography.js';
20
- import type { XmlAttribute, XmlCDataSection, XmlComment, XmlDocument, XmlElement, XmlNode, XmlReader, XmlSignificantWhitespace, XmlText, XmlTextReader, XmlWhitespace } from '@tsonic/dotnet/System.Xml.js';
20
+ import type { XmlAttribute, XmlCDataSection, XmlComment, XmlDocument, XmlElement, XmlNode, XmlReader, XmlSignificantWhitespace, XmlText, XmlTextReader, XmlWhitespace, XmlWriter } from '@tsonic/dotnet/System.Xml.js';
21
21
  import type { IXPathNavigable } from '@tsonic/dotnet/System.Xml.XPath.js';
22
22
 
23
23
  // Public API exports (curated - no internal $instance/$views leakage)
@@ -22,6 +22,10 @@
22
22
  "isSealed": true,
23
23
  "isStatic": true,
24
24
  "arity": 0,
25
+ "baseType": {
26
+ "stableId": "System.Private.CoreLib:System.Object",
27
+ "clrName": "System.Object"
28
+ },
25
29
  "methods": [
26
30
  {
27
31
  "stableId": "System.Configuration.ConfigurationManager:System.Diagnostics.TraceConfiguration::Register():System.Void",
@@ -38,6 +42,7 @@
38
42
  "isVirtual": false,
39
43
  "isOverride": false,
40
44
  "isSealed": false,
45
+ "visibility": "Public",
41
46
  "declaringClrType": "System.Diagnostics.TraceConfiguration",
42
47
  "declaringAssemblyName": "System.Configuration.ConfigurationManager",
43
48
  "isExtensionMethod": false
@@ -15,6 +15,10 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Configuration.ConfigurationManager:System.Configuration.ConfigurationSection",
20
+ "clrName": "System.Configuration.ConfigurationSection"
21
+ },
18
22
  "methods": [],
19
23
  "properties": [
20
24
  {
@@ -32,6 +36,26 @@
32
36
  "isAbstract": false,
33
37
  "isVirtual": false,
34
38
  "isOverride": false,
39
+ "visibility": "Public",
40
+ "declaringClrType": "System.Drawing.Configuration.SystemDrawingSection",
41
+ "declaringAssemblyName": "System.Configuration.ConfigurationManager"
42
+ },
43
+ {
44
+ "stableId": "System.Configuration.ConfigurationManager:System.Drawing.Configuration.SystemDrawingSection::Properties:System.Configuration.ConfigurationPropertyCollection",
45
+ "clrName": "Properties",
46
+ "metadataToken": 385876234,
47
+ "canonicalSignature": ":System.Configuration.ConfigurationPropertyCollection",
48
+ "normalizedSignature": "Properties|:System.Configuration.ConfigurationPropertyCollection|static=false|accessor=get",
49
+ "emitScope": "ClassSurface",
50
+ "provenance": "Original",
51
+ "isIndexer": false,
52
+ "hasGetter": true,
53
+ "hasSetter": false,
54
+ "isStatic": false,
55
+ "isAbstract": false,
56
+ "isVirtual": true,
57
+ "isOverride": true,
58
+ "visibility": "ProtectedInternal",
35
59
  "declaringClrType": "System.Drawing.Configuration.SystemDrawingSection",
36
60
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
37
61
  }
@@ -46,6 +70,7 @@
46
70
  "normalizedSignature": "constructor|():void|static=false",
47
71
  "isStatic": false,
48
72
  "parameterCount": 0,
73
+ "visibility": "Public",
49
74
  "declaringClrType": "System.Drawing.Configuration.SystemDrawingSection",
50
75
  "declaringAssemblyName": "System.Configuration.ConfigurationManager"
51
76
  }
@@ -8,10 +8,18 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
8
8
  // Import types from other namespaces
9
9
  import * as System_Internal from "@tsonic/dotnet/System.js";
10
10
  import * as System_Configuration_Internal from "../../System.Configuration/internal/index.js";
11
- import type { Configuration, ConfigurationLockCollection, ConfigurationSection, ElementInformation, SectionInformation } from "../../System.Configuration/internal/index.js";
12
- import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
11
+ import type { Configuration, ConfigurationElement, ConfigurationElementProperty, ConfigurationLockCollection, ConfigurationProperty, ConfigurationPropertyCollection, ConfigurationSaveMode, ConfigurationSection, ContextInformation, ElementInformation, SectionInformation } from "../../System.Configuration/internal/index.js";
12
+ import type { IList } from "@tsonic/dotnet/System.Collections.js";
13
+ import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
14
+ import type { FrameworkName } from "@tsonic/dotnet/System.Runtime.Versioning.js";
15
+ import type { XmlReader, XmlWriter } from "@tsonic/dotnet/System.Xml.js";
16
+
17
+ export abstract class SystemDrawingSection$protected {
18
+ protected readonly Properties: ConfigurationPropertyCollection;
19
+ }
20
+
13
21
 
14
- export interface SystemDrawingSection$instance extends ConfigurationSection {
22
+ export interface SystemDrawingSection$instance extends SystemDrawingSection$protected, ConfigurationSection {
15
23
  BitmapSuffix: string;
16
24
  }
17
25
 
@@ -6,8 +6,11 @@
6
6
  import * as Internal from './System.Drawing.Configuration/internal/index.js';
7
7
 
8
8
  // Cross-namespace type imports for constraints
9
- import type { Configuration, ConfigurationLockCollection, ConfigurationSection, ElementInformation, SectionInformation } from './System.Configuration/internal/index.js';
10
- import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString } from '@tsonic/dotnet/System.js';
9
+ import type { Configuration, ConfigurationElement, ConfigurationElementProperty, ConfigurationLockCollection, ConfigurationProperty, ConfigurationPropertyCollection, ConfigurationSaveMode, ConfigurationSection, ContextInformation, ElementInformation, SectionInformation } from './System.Configuration/internal/index.js';
10
+ import type { IList } from '@tsonic/dotnet/System.Collections.js';
11
+ import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
12
+ import type { FrameworkName } from '@tsonic/dotnet/System.Runtime.Versioning.js';
13
+ import type { XmlReader, XmlWriter } from '@tsonic/dotnet/System.Xml.js';
11
14
 
12
15
  // Public API exports (curated - no internal $instance/$views leakage)
13
16
  export { SystemDrawingSection as SystemDrawingSection } from './System.Drawing.Configuration/internal/index.js';