@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
@@ -12,11 +12,11 @@ import * as System_Configuration_Provider_Internal from "../../System.Configurat
12
12
  import type { ProviderBase, ProviderCollection } from "../../System.Configuration.Provider/internal/index.js";
13
13
  import type { UriIdnScope } from "../../System/internal/index.js";
14
14
  import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
15
- import type { Hashtable, ICollection, IDictionary, IEnumerable, IEnumerator, IList, ReadOnlyCollectionBase } from "@tsonic/dotnet/System.Collections.js";
15
+ import type { Hashtable, ICollection, IComparer, IDictionary, IEnumerable, IEnumerator, IList, ReadOnlyCollectionBase } from "@tsonic/dotnet/System.Collections.js";
16
16
  import * as System_Collections_Specialized_Internal from "@tsonic/dotnet/System.Collections.Specialized.js";
17
17
  import type { NameObjectCollectionBase, NameValueCollection, StringCollection } from "@tsonic/dotnet/System.Collections.Specialized.js";
18
18
  import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
19
- import type { CancelEventArgs, INotifyPropertyChanged, ITypeDescriptorContext, PropertyChangedEventHandler, TypeConverter } from "@tsonic/dotnet/System.ComponentModel.js";
19
+ import type { CancelEventArgs, IComponent, INotifyPropertyChanged, ITypeDescriptorContext, PropertyChangedEventArgs, PropertyChangedEventHandler, TypeConverter } from "@tsonic/dotnet/System.ComponentModel.js";
20
20
  import type { CultureInfo } from "@tsonic/dotnet/System.Globalization.js";
21
21
  import * as System_Lib from "@tsonic/dotnet/System.js";
22
22
  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";
@@ -25,7 +25,7 @@ import type { IDeserializationCallback, ISerializable, SerializationInfo, Stream
25
25
  import type { FrameworkName } from "@tsonic/dotnet/System.Runtime.Versioning.js";
26
26
  import type { RSAParameters } from "@tsonic/dotnet/System.Security.Cryptography.js";
27
27
  import * as System_Xml_Internal from "@tsonic/dotnet/System.Xml.js";
28
- import type { XmlAttribute, XmlCDataSection, XmlComment, XmlDocument, XmlElement, XmlNode, XmlReader, XmlSignificantWhitespace, XmlText, XmlTextReader, XmlWhitespace } from "@tsonic/dotnet/System.Xml.js";
28
+ import type { XmlAttribute, XmlCDataSection, XmlComment, XmlDocument, XmlElement, XmlNode, XmlReader, XmlSignificantWhitespace, XmlText, XmlTextReader, XmlWhitespace, XmlWriter } from "@tsonic/dotnet/System.Xml.js";
29
29
  import * as System_Xml_XPath_Internal from "@tsonic/dotnet/System.Xml.XPath.js";
30
30
  import type { IXPathNavigable } from "@tsonic/dotnet/System.Xml.XPath.js";
31
31
 
@@ -174,7 +174,15 @@ export const ApplicationScopedSettingAttribute: {
174
174
 
175
175
  export type ApplicationScopedSettingAttribute = ApplicationScopedSettingAttribute$instance;
176
176
 
177
- export interface ApplicationSettingsBase$instance extends SettingsBase {
177
+ export abstract class ApplicationSettingsBase$protected {
178
+ protected OnPropertyChanged(sender: unknown, e: PropertyChangedEventArgs): void;
179
+ protected OnSettingChanging(sender: unknown, e: SettingChangingEventArgs): void;
180
+ protected OnSettingsLoaded(sender: unknown, e: SettingsLoadedEventArgs): void;
181
+ protected OnSettingsSaving(sender: unknown, e: CancelEventArgs): void;
182
+ }
183
+
184
+
185
+ export interface ApplicationSettingsBase$instance extends ApplicationSettingsBase$protected, SettingsBase {
178
186
  readonly Context: SettingsContext;
179
187
  Item: unknown;
180
188
  readonly Properties: SettingsPropertyCollection;
@@ -190,6 +198,10 @@ export interface ApplicationSettingsBase$instance extends SettingsBase {
190
198
 
191
199
 
192
200
  export const ApplicationSettingsBase: {
201
+ new(): ApplicationSettingsBase;
202
+ new(owner: IComponent): ApplicationSettingsBase;
203
+ new(settingsKey: string): ApplicationSettingsBase;
204
+ new(owner: IComponent, settingsKey: string): ApplicationSettingsBase;
193
205
  };
194
206
 
195
207
 
@@ -218,7 +230,15 @@ export const AppSettingsReader: {
218
230
 
219
231
  export type AppSettingsReader = AppSettingsReader$instance;
220
232
 
221
- export interface AppSettingsSection$instance extends ConfigurationSection {
233
+ export abstract class AppSettingsSection$protected {
234
+ protected readonly Properties: ConfigurationPropertyCollection;
235
+ protected DeserializeElement(reader: XmlReader, serializeCollectionKey: boolean): void;
236
+ protected GetRuntimeObject(): unknown;
237
+ protected Reset(parentSection: ConfigurationElement): void;
238
+ }
239
+
240
+
241
+ export interface AppSettingsSection$instance extends AppSettingsSection$protected, ConfigurationSection {
222
242
  File: string;
223
243
  readonly Settings: KeyValueConfigurationCollection;
224
244
  }
@@ -258,7 +278,12 @@ export const CallbackValidatorAttribute: {
258
278
 
259
279
  export type CallbackValidatorAttribute = CallbackValidatorAttribute$instance;
260
280
 
261
- export interface ClientSettingsSection$instance extends ConfigurationSection {
281
+ export abstract class ClientSettingsSection$protected {
282
+ protected readonly Properties: ConfigurationPropertyCollection;
283
+ }
284
+
285
+
286
+ export interface ClientSettingsSection$instance extends ClientSettingsSection$protected, ConfigurationSection {
262
287
  readonly Settings: SettingElementCollection;
263
288
  }
264
289
 
@@ -272,7 +297,7 @@ export type ClientSettingsSection = ClientSettingsSection$instance;
272
297
 
273
298
  export interface CommaDelimitedStringCollection$instance extends StringCollection {
274
299
  readonly IsModified: boolean;
275
- readonly IsReadOnly: boolean;
300
+ IsReadOnly: boolean;
276
301
  Item: string;
277
302
  Add(value: string): void;
278
303
  AddRange(range: string[]): void;
@@ -360,12 +385,37 @@ export interface ConfigurationConverterBase$instance extends TypeConverter {
360
385
 
361
386
 
362
387
  export const ConfigurationConverterBase: {
388
+ new(): ConfigurationConverterBase;
363
389
  };
364
390
 
365
391
 
366
392
  export type ConfigurationConverterBase = ConfigurationConverterBase$instance;
367
393
 
368
- export interface ConfigurationElement$instance {
394
+ export abstract class ConfigurationElement$protected {
395
+ protected readonly ElementProperty: ConfigurationElementProperty;
396
+ protected readonly Properties: ConfigurationPropertyCollection;
397
+ protected DeserializeElement(reader: XmlReader, serializeCollectionKey: boolean): void;
398
+ protected GetTransformedAssemblyString(assemblyName: string): string;
399
+ protected GetTransformedTypeString(typeName: string): string;
400
+ protected Init(): void;
401
+ protected InitializeDefault(): void;
402
+ protected IsModified(): boolean;
403
+ protected ListErrors(errorList: IList): void;
404
+ protected OnDeserializeUnrecognizedAttribute(name: string, value: string): boolean;
405
+ protected OnDeserializeUnrecognizedElement(elementName: string, reader: XmlReader): boolean;
406
+ protected OnRequiredPropertyNotFound(name: string): unknown;
407
+ protected PostDeserialize(): void;
408
+ protected PreSerialize(writer: XmlWriter): void;
409
+ protected Reset(parentElement: ConfigurationElement): void;
410
+ protected ResetModified(): void;
411
+ protected SerializeElement(writer: XmlWriter, serializeCollectionKey: boolean): boolean;
412
+ protected SerializeToXmlElement(writer: XmlWriter, elementName: string): boolean;
413
+ protected SetReadOnly(): void;
414
+ protected Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
415
+ }
416
+
417
+
418
+ export interface ConfigurationElement$instance extends ConfigurationElement$protected {
369
419
  readonly CurrentConfiguration: Configuration;
370
420
  readonly ElementInformation: ElementInformation;
371
421
  readonly LockAllAttributesExcept: ConfigurationLockCollection;
@@ -380,12 +430,33 @@ export interface ConfigurationElement$instance {
380
430
 
381
431
 
382
432
  export const ConfigurationElement: {
433
+ new(): ConfigurationElement;
383
434
  };
384
435
 
385
436
 
386
437
  export type ConfigurationElement = ConfigurationElement$instance;
387
438
 
388
- export interface ConfigurationElementCollection$instance extends ConfigurationElement {
439
+ export abstract class ConfigurationElementCollection$protected {
440
+ protected readonly ElementName: string;
441
+ protected readonly ThrowOnDuplicate: boolean;
442
+ protected BaseAdd(element: ConfigurationElement): void;
443
+ protected BaseAdd(index: int, element: ConfigurationElement): void;
444
+ protected abstract CreateNewElement(): ConfigurationElement;
445
+ protected CreateNewElement(elementName: string): ConfigurationElement;
446
+ protected abstract GetElementKey(element: ConfigurationElement): unknown;
447
+ protected IsElementName(elementName: string): boolean;
448
+ protected IsElementRemovable(element: ConfigurationElement): boolean;
449
+ protected IsModified(): boolean;
450
+ protected OnDeserializeUnrecognizedElement(elementName: string, reader: XmlReader): boolean;
451
+ protected Reset(parentElement: ConfigurationElement): void;
452
+ protected ResetModified(): void;
453
+ protected SerializeElement(writer: XmlWriter, serializeCollectionKey: boolean): boolean;
454
+ protected SetReadOnly(): void;
455
+ protected Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
456
+ }
457
+
458
+
459
+ export interface ConfigurationElementCollection$instance extends ConfigurationElementCollection$protected, ConfigurationElement {
389
460
  readonly CollectionType: ConfigurationElementCollectionType;
390
461
  readonly Count: int;
391
462
  EmitClear: boolean;
@@ -400,6 +471,8 @@ export interface ConfigurationElementCollection$instance extends ConfigurationEl
400
471
 
401
472
 
402
473
  export const ConfigurationElementCollection: {
474
+ new(): ConfigurationElementCollection;
475
+ new(comparer: IComparer): ConfigurationElementCollection;
403
476
  };
404
477
 
405
478
 
@@ -436,6 +509,7 @@ export const ConfigurationErrorsException: {
436
509
  new(message: string, inner: Exception, node: XmlNode): ConfigurationErrorsException;
437
510
  new(message: string, reader: XmlReader): ConfigurationErrorsException;
438
511
  new(message: string, inner: Exception, reader: XmlReader): ConfigurationErrorsException;
512
+ new(info: SerializationInfo, context: StreamingContext): ConfigurationErrorsException;
439
513
  GetFilename(node: XmlNode): string;
440
514
  GetFilename(reader: XmlReader): string;
441
515
  GetLineNumber(node: XmlNode): int;
@@ -455,6 +529,7 @@ export interface ConfigurationException$instance extends SystemException {
455
529
 
456
530
 
457
531
  export const ConfigurationException: {
532
+ new(info: SerializationInfo, context: StreamingContext): ConfigurationException;
458
533
  new(): ConfigurationException;
459
534
  new(message: string): ConfigurationException;
460
535
  new(message: string, inner: Exception): ConfigurationException;
@@ -512,7 +587,7 @@ export interface ConfigurationLockCollection$instance {
512
587
  readonly AttributeList: string;
513
588
  readonly Count: int;
514
589
  readonly HasParentElements: boolean;
515
- readonly IsModified: boolean;
590
+ IsModified: boolean;
516
591
  readonly IsSynchronized: boolean;
517
592
  readonly SyncRoot: unknown;
518
593
  Add(name: string): void;
@@ -535,17 +610,17 @@ export type ConfigurationLockCollection = ConfigurationLockCollection$instance;
535
610
 
536
611
  export interface ConfigurationProperty$instance {
537
612
  readonly Converter: TypeConverter;
538
- readonly DefaultValue: unknown;
539
- readonly Description: string;
613
+ DefaultValue: unknown;
614
+ Description: string;
540
615
  readonly IsAssemblyStringTransformationRequired: boolean;
541
616
  readonly IsDefaultCollection: boolean;
542
617
  readonly IsKey: boolean;
543
618
  readonly IsRequired: boolean;
544
619
  readonly IsTypeStringTransformationRequired: boolean;
545
620
  readonly IsVersionCheckRequired: boolean;
546
- readonly Name: string;
547
- readonly Type: Type;
548
- readonly Validator: ConfigurationValidatorBase;
621
+ Name: string;
622
+ Type: Type;
623
+ Validator: ConfigurationValidatorBase;
549
624
  }
550
625
 
551
626
 
@@ -598,12 +673,25 @@ export const ConfigurationPropertyCollection: {
598
673
 
599
674
  export type ConfigurationPropertyCollection = ConfigurationPropertyCollection$instance;
600
675
 
601
- export interface ConfigurationSection$instance extends ConfigurationElement {
676
+ export abstract class ConfigurationSection$protected {
677
+ protected DeserializeSection(reader: XmlReader): void;
678
+ protected GetRuntimeObject(): unknown;
679
+ protected IsModified(): boolean;
680
+ protected ResetModified(): void;
681
+ protected SerializeSection(parentElement: ConfigurationElement, name: string, saveMode: ConfigurationSaveMode): string;
682
+ protected ShouldSerializeElementInTargetVersion(element: ConfigurationElement, elementName: string, targetFramework: FrameworkName): boolean;
683
+ protected ShouldSerializePropertyInTargetVersion(property: ConfigurationProperty, propertyName: string, targetFramework: FrameworkName, parentConfigurationElement: ConfigurationElement): boolean;
684
+ protected ShouldSerializeSectionInTargetVersion(targetFramework: FrameworkName): boolean;
685
+ }
686
+
687
+
688
+ export interface ConfigurationSection$instance extends ConfigurationSection$protected, ConfigurationElement {
602
689
  readonly SectionInformation: SectionInformation;
603
690
  }
604
691
 
605
692
 
606
693
  export const ConfigurationSection: {
694
+ new(): ConfigurationSection;
607
695
  };
608
696
 
609
697
 
@@ -631,11 +719,16 @@ export const ConfigurationSectionCollection: {
631
719
 
632
720
  export type ConfigurationSectionCollection = ConfigurationSectionCollection$instance;
633
721
 
634
- export interface ConfigurationSectionGroup$instance {
635
- readonly IsDeclarationRequired: boolean;
636
- readonly IsDeclared: boolean;
637
- readonly Name: string;
638
- readonly SectionGroupName: string;
722
+ export abstract class ConfigurationSectionGroup$protected {
723
+ protected ShouldSerializeSectionGroupInTargetVersion(targetFramework: FrameworkName): boolean;
724
+ }
725
+
726
+
727
+ export interface ConfigurationSectionGroup$instance extends ConfigurationSectionGroup$protected {
728
+ IsDeclarationRequired: boolean;
729
+ IsDeclared: boolean;
730
+ Name: string;
731
+ SectionGroupName: string;
639
732
  readonly SectionGroups: ConfigurationSectionGroupCollection;
640
733
  readonly Sections: ConfigurationSectionCollection;
641
734
  Type: string;
@@ -693,6 +786,7 @@ export interface ConfigurationValidatorAttribute$instance extends Attribute {
693
786
 
694
787
 
695
788
  export const ConfigurationValidatorAttribute: {
789
+ new(): ConfigurationValidatorAttribute;
696
790
  new(validator: Type): ConfigurationValidatorAttribute;
697
791
  };
698
792
 
@@ -706,6 +800,7 @@ export interface ConfigurationValidatorBase$instance {
706
800
 
707
801
 
708
802
  export const ConfigurationValidatorBase: {
803
+ new(): ConfigurationValidatorBase;
709
804
  };
710
805
 
711
806
 
@@ -740,7 +835,12 @@ export interface ConfigXmlDocument$instance extends System_Configuration_Interna
740
835
  export type ConfigXmlDocument = ConfigXmlDocument$instance & __ConfigXmlDocument$views;
741
836
 
742
837
 
743
- export interface ConnectionStringSettings$instance extends ConfigurationElement {
838
+ export abstract class ConnectionStringSettings$protected {
839
+ protected readonly Properties: ConfigurationPropertyCollection;
840
+ }
841
+
842
+
843
+ export interface ConnectionStringSettings$instance extends ConnectionStringSettings$protected, ConfigurationElement {
744
844
  ConnectionString: string;
745
845
  Name: string;
746
846
  ProviderName: string;
@@ -757,7 +857,17 @@ export const ConnectionStringSettings: {
757
857
 
758
858
  export type ConnectionStringSettings = ConnectionStringSettings$instance;
759
859
 
760
- export interface ConnectionStringSettingsCollection$instance extends ConfigurationElementCollection {
860
+ export abstract class ConnectionStringSettingsCollection$protected {
861
+ protected readonly Properties: ConfigurationPropertyCollection;
862
+ protected BaseAdd(element: ConfigurationElement): void;
863
+ protected BaseAdd3(index: int, element: ConfigurationElement): void;
864
+ protected CreateNewElement2(): ConfigurationElement;
865
+ protected CreateNewElement(elementName: string): ConfigurationElement;
866
+ protected GetElementKey(element: ConfigurationElement): unknown;
867
+ }
868
+
869
+
870
+ export interface ConnectionStringSettingsCollection$instance extends ConnectionStringSettingsCollection$protected, ConfigurationElementCollection {
761
871
  Add(settings: ConnectionStringSettings): void;
762
872
  Clear(): void;
763
873
  get_Item(index: int): ConnectionStringSettings;
@@ -777,7 +887,13 @@ export const ConnectionStringSettingsCollection: {
777
887
 
778
888
  export type ConnectionStringSettingsCollection = ConnectionStringSettingsCollection$instance;
779
889
 
780
- export interface ConnectionStringsSection$instance extends ConfigurationSection {
890
+ export abstract class ConnectionStringsSection$protected {
891
+ protected readonly Properties: ConfigurationPropertyCollection;
892
+ protected GetRuntimeObject(): unknown;
893
+ }
894
+
895
+
896
+ export interface ConnectionStringsSection$instance extends ConnectionStringsSection$protected, ConfigurationSection {
781
897
  readonly ConnectionStrings: ConnectionStringSettingsCollection;
782
898
  }
783
899
 
@@ -803,7 +919,17 @@ export const ContextInformation: {
803
919
 
804
920
  export type ContextInformation = ContextInformation$instance;
805
921
 
806
- export interface DefaultSection$instance extends ConfigurationSection {
922
+ export abstract class DefaultSection$protected {
923
+ protected readonly Properties: ConfigurationPropertyCollection;
924
+ protected DeserializeSection(xmlReader: XmlReader): void;
925
+ protected IsModified(): boolean;
926
+ protected Reset(parentSection: ConfigurationElement): void;
927
+ protected ResetModified(): void;
928
+ protected SerializeSection(parentSection: ConfigurationElement, name: string, saveMode: ConfigurationSaveMode): string;
929
+ }
930
+
931
+
932
+ export interface DefaultSection$instance extends DefaultSection$protected, ConfigurationSection {
807
933
  }
808
934
 
809
935
 
@@ -839,7 +965,13 @@ export const DefaultValidator: {
839
965
 
840
966
  export type DefaultValidator = DefaultValidator$instance;
841
967
 
842
- export interface DictionarySectionHandler$instance {
968
+ export abstract class DictionarySectionHandler$protected {
969
+ protected readonly KeyAttributeName: string;
970
+ protected readonly ValueAttributeName: string;
971
+ }
972
+
973
+
974
+ export interface DictionarySectionHandler$instance extends DictionarySectionHandler$protected {
843
975
  Create(parent: unknown, context: unknown, section: XmlNode): unknown;
844
976
  }
845
977
 
@@ -935,7 +1067,12 @@ export const GenericEnumConverter: {
935
1067
 
936
1068
  export type GenericEnumConverter = GenericEnumConverter$instance;
937
1069
 
938
- export interface IdnElement$instance extends ConfigurationElement {
1070
+ export abstract class IdnElement$protected {
1071
+ protected readonly Properties: ConfigurationPropertyCollection;
1072
+ }
1073
+
1074
+
1075
+ export interface IdnElement$instance extends IdnElement$protected, ConfigurationElement {
939
1076
  Enabled: UriIdnScope;
940
1077
  }
941
1078
 
@@ -947,7 +1084,17 @@ export const IdnElement: {
947
1084
 
948
1085
  export type IdnElement = IdnElement$instance;
949
1086
 
950
- export interface IgnoreSection$instance extends ConfigurationSection {
1087
+ export abstract class IgnoreSection$protected {
1088
+ protected readonly Properties: ConfigurationPropertyCollection;
1089
+ protected DeserializeSection(xmlReader: XmlReader): void;
1090
+ protected IsModified(): boolean;
1091
+ protected Reset(parentSection: ConfigurationElement): void;
1092
+ protected ResetModified(): void;
1093
+ protected SerializeSection(parentSection: ConfigurationElement, name: string, saveMode: ConfigurationSaveMode): string;
1094
+ }
1095
+
1096
+
1097
+ export interface IgnoreSection$instance extends IgnoreSection$protected, ConfigurationSection {
951
1098
  }
952
1099
 
953
1100
 
@@ -1033,7 +1180,12 @@ export const IntegerValidatorAttribute: {
1033
1180
 
1034
1181
  export type IntegerValidatorAttribute = IntegerValidatorAttribute$instance;
1035
1182
 
1036
- export interface IriParsingElement$instance extends ConfigurationElement {
1183
+ export abstract class IriParsingElement$protected {
1184
+ protected readonly Properties: ConfigurationPropertyCollection;
1185
+ }
1186
+
1187
+
1188
+ export interface IriParsingElement$instance extends IriParsingElement$protected, ConfigurationElement {
1037
1189
  Enabled: boolean;
1038
1190
  }
1039
1191
 
@@ -1045,7 +1197,16 @@ export const IriParsingElement: {
1045
1197
 
1046
1198
  export type IriParsingElement = IriParsingElement$instance;
1047
1199
 
1048
- export interface KeyValueConfigurationCollection$instance extends ConfigurationElementCollection {
1200
+ export abstract class KeyValueConfigurationCollection$protected {
1201
+ protected readonly Properties: ConfigurationPropertyCollection;
1202
+ protected readonly ThrowOnDuplicate: boolean;
1203
+ protected CreateNewElement2(): ConfigurationElement;
1204
+ protected CreateNewElement(elementName: string): ConfigurationElement;
1205
+ protected GetElementKey(element: ConfigurationElement): unknown;
1206
+ }
1207
+
1208
+
1209
+ export interface KeyValueConfigurationCollection$instance extends KeyValueConfigurationCollection$protected, ConfigurationElementCollection {
1049
1210
  readonly AllKeys: string[];
1050
1211
  readonly Item: KeyValueConfigurationElement;
1051
1212
  Add(keyValue: KeyValueConfigurationElement): void;
@@ -1062,7 +1223,13 @@ export const KeyValueConfigurationCollection: {
1062
1223
 
1063
1224
  export type KeyValueConfigurationCollection = KeyValueConfigurationCollection$instance;
1064
1225
 
1065
- export interface KeyValueConfigurationElement$instance extends ConfigurationElement {
1226
+ export abstract class KeyValueConfigurationElement$protected {
1227
+ protected readonly Properties: ConfigurationPropertyCollection;
1228
+ protected Init(): void;
1229
+ }
1230
+
1231
+
1232
+ export interface KeyValueConfigurationElement$instance extends KeyValueConfigurationElement$protected, ConfigurationElement {
1066
1233
  readonly Key: string;
1067
1234
  Value: string;
1068
1235
  }
@@ -1130,7 +1297,15 @@ export const LongValidatorAttribute: {
1130
1297
 
1131
1298
  export type LongValidatorAttribute = LongValidatorAttribute$instance;
1132
1299
 
1133
- export interface NameValueConfigurationCollection$instance extends ConfigurationElementCollection {
1300
+ export abstract class NameValueConfigurationCollection$protected {
1301
+ protected readonly Properties: ConfigurationPropertyCollection;
1302
+ protected CreateNewElement2(): ConfigurationElement;
1303
+ protected CreateNewElement(elementName: string): ConfigurationElement;
1304
+ protected GetElementKey(element: ConfigurationElement): unknown;
1305
+ }
1306
+
1307
+
1308
+ export interface NameValueConfigurationCollection$instance extends NameValueConfigurationCollection$protected, ConfigurationElementCollection {
1134
1309
  readonly AllKeys: string[];
1135
1310
  Item: NameValueConfigurationElement;
1136
1311
  Add(nameValue: NameValueConfigurationElement): void;
@@ -1147,7 +1322,12 @@ export const NameValueConfigurationCollection: {
1147
1322
 
1148
1323
  export type NameValueConfigurationCollection = NameValueConfigurationCollection$instance;
1149
1324
 
1150
- export interface NameValueConfigurationElement$instance extends ConfigurationElement {
1325
+ export abstract class NameValueConfigurationElement$protected {
1326
+ protected readonly Properties: ConfigurationPropertyCollection;
1327
+ }
1328
+
1329
+
1330
+ export interface NameValueConfigurationElement$instance extends NameValueConfigurationElement$protected, ConfigurationElement {
1151
1331
  readonly Name: string;
1152
1332
  Value: string;
1153
1333
  }
@@ -1179,7 +1359,13 @@ export interface NameValueFileSectionHandler$instance extends IConfigurationSect
1179
1359
  export type NameValueFileSectionHandler = NameValueFileSectionHandler$instance & __NameValueFileSectionHandler$views;
1180
1360
 
1181
1361
 
1182
- export interface NameValueSectionHandler$instance {
1362
+ export abstract class NameValueSectionHandler$protected {
1363
+ protected readonly KeyAttributeName: string;
1364
+ protected readonly ValueAttributeName: string;
1365
+ }
1366
+
1367
+
1368
+ export interface NameValueSectionHandler$instance extends NameValueSectionHandler$protected {
1183
1369
  Create(parent: unknown, context: unknown, section: XmlNode): unknown;
1184
1370
  }
1185
1371
 
@@ -1280,6 +1466,7 @@ export interface ProtectedConfigurationProvider$instance extends ProviderBase {
1280
1466
 
1281
1467
 
1282
1468
  export const ProtectedConfigurationProvider: {
1469
+ new(): ProtectedConfigurationProvider;
1283
1470
  };
1284
1471
 
1285
1472
 
@@ -1298,7 +1485,12 @@ export const ProtectedConfigurationProviderCollection: {
1298
1485
 
1299
1486
  export type ProtectedConfigurationProviderCollection = ProtectedConfigurationProviderCollection$instance;
1300
1487
 
1301
- export interface ProtectedConfigurationSection$instance extends ConfigurationSection {
1488
+ export abstract class ProtectedConfigurationSection$protected {
1489
+ protected readonly Properties: ConfigurationPropertyCollection;
1490
+ }
1491
+
1492
+
1493
+ export interface ProtectedConfigurationSection$instance extends ProtectedConfigurationSection$protected, ConfigurationSection {
1302
1494
  DefaultProvider: string;
1303
1495
  readonly Providers: ProviderSettingsCollection;
1304
1496
  }
@@ -1311,7 +1503,12 @@ export const ProtectedConfigurationSection: {
1311
1503
 
1312
1504
  export type ProtectedConfigurationSection = ProtectedConfigurationSection$instance;
1313
1505
 
1314
- export interface ProtectedProviderSettings$instance extends ConfigurationElement {
1506
+ export abstract class ProtectedProviderSettings$protected {
1507
+ protected readonly Properties: ConfigurationPropertyCollection;
1508
+ }
1509
+
1510
+
1511
+ export interface ProtectedProviderSettings$instance extends ProtectedProviderSettings$protected, ConfigurationElement {
1315
1512
  readonly Providers: ProviderSettingsCollection;
1316
1513
  }
1317
1514
 
@@ -1323,7 +1520,16 @@ export const ProtectedProviderSettings: {
1323
1520
 
1324
1521
  export type ProtectedProviderSettings = ProtectedProviderSettings$instance;
1325
1522
 
1326
- export interface ProviderSettings$instance extends ConfigurationElement {
1523
+ export abstract class ProviderSettings$protected {
1524
+ protected readonly Properties: ConfigurationPropertyCollection;
1525
+ protected IsModified(): boolean;
1526
+ protected OnDeserializeUnrecognizedAttribute(name: string, value: string): boolean;
1527
+ protected Reset(parentElement: ConfigurationElement): void;
1528
+ protected Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
1529
+ }
1530
+
1531
+
1532
+ export interface ProviderSettings$instance extends ProviderSettings$protected, ConfigurationElement {
1327
1533
  Name: string;
1328
1534
  readonly Parameters: NameValueCollection;
1329
1535
  Type: string;
@@ -1338,7 +1544,15 @@ export const ProviderSettings: {
1338
1544
 
1339
1545
  export type ProviderSettings = ProviderSettings$instance;
1340
1546
 
1341
- export interface ProviderSettingsCollection$instance extends ConfigurationElementCollection {
1547
+ export abstract class ProviderSettingsCollection$protected {
1548
+ protected readonly Properties: ConfigurationPropertyCollection;
1549
+ protected CreateNewElement2(): ConfigurationElement;
1550
+ protected CreateNewElement(elementName: string): ConfigurationElement;
1551
+ protected GetElementKey(element: ConfigurationElement): unknown;
1552
+ }
1553
+
1554
+
1555
+ export interface ProviderSettingsCollection$instance extends ProviderSettingsCollection$protected, ConfigurationElementCollection {
1342
1556
  Add(provider: ProviderSettings): void;
1343
1557
  Clear(): void;
1344
1558
  get_Item(key: string): ProviderSettings;
@@ -1404,7 +1618,12 @@ export const RsaProtectedConfigurationProvider: {
1404
1618
 
1405
1619
  export type RsaProtectedConfigurationProvider = RsaProtectedConfigurationProvider$instance;
1406
1620
 
1407
- export interface SchemeSettingElement$instance extends ConfigurationElement {
1621
+ export abstract class SchemeSettingElement$protected {
1622
+ protected readonly Properties: ConfigurationPropertyCollection;
1623
+ }
1624
+
1625
+
1626
+ export interface SchemeSettingElement$instance extends SchemeSettingElement$protected, ConfigurationElement {
1408
1627
  readonly GenericUriParserOptions: GenericUriParserOptions;
1409
1628
  readonly Name: string;
1410
1629
  }
@@ -1417,7 +1636,14 @@ export const SchemeSettingElement: {
1417
1636
 
1418
1637
  export type SchemeSettingElement = SchemeSettingElement$instance;
1419
1638
 
1420
- export interface SchemeSettingElementCollection$instance extends ConfigurationElementCollection {
1639
+ export abstract class SchemeSettingElementCollection$protected {
1640
+ protected CreateNewElement2(): ConfigurationElement;
1641
+ protected CreateNewElement(elementName: string): ConfigurationElement;
1642
+ protected GetElementKey(element: ConfigurationElement): unknown;
1643
+ }
1644
+
1645
+
1646
+ export interface SchemeSettingElementCollection$instance extends SchemeSettingElementCollection$protected, ConfigurationElementCollection {
1421
1647
  readonly CollectionType: ConfigurationElementCollectionType;
1422
1648
  get_Item(index: int): SchemeSettingElement;
1423
1649
  get_Item(name: string): SchemeSettingElement;
@@ -1444,7 +1670,7 @@ export interface SectionInformation$instance {
1444
1670
  readonly IsDeclared: boolean;
1445
1671
  readonly IsLocked: boolean;
1446
1672
  readonly IsProtected: boolean;
1447
- readonly Name: string;
1673
+ Name: string;
1448
1674
  OverrideMode: OverrideMode;
1449
1675
  OverrideModeDefault: OverrideMode;
1450
1676
  readonly OverrideModeEffective: OverrideMode;
@@ -1497,7 +1723,12 @@ export const SettingChangingEventArgs: {
1497
1723
 
1498
1724
  export type SettingChangingEventArgs = SettingChangingEventArgs$instance;
1499
1725
 
1500
- export interface SettingElement$instance extends ConfigurationElement {
1726
+ export abstract class SettingElement$protected {
1727
+ protected readonly Properties: ConfigurationPropertyCollection;
1728
+ }
1729
+
1730
+
1731
+ export interface SettingElement$instance extends SettingElement$protected, ConfigurationElement {
1501
1732
  Name: string;
1502
1733
  SerializeAs: SettingsSerializeAs;
1503
1734
  Value: SettingValueElement;
@@ -1514,7 +1745,15 @@ export const SettingElement: {
1514
1745
 
1515
1746
  export type SettingElement = SettingElement$instance;
1516
1747
 
1517
- export interface SettingElementCollection$instance extends ConfigurationElementCollection {
1748
+ export abstract class SettingElementCollection$protected {
1749
+ protected readonly ElementName: string;
1750
+ protected CreateNewElement2(): ConfigurationElement;
1751
+ protected CreateNewElement(elementName: string): ConfigurationElement;
1752
+ protected GetElementKey(element: ConfigurationElement): unknown;
1753
+ }
1754
+
1755
+
1756
+ export interface SettingElementCollection$instance extends SettingElementCollection$protected, ConfigurationElementCollection {
1518
1757
  readonly CollectionType: ConfigurationElementCollectionType;
1519
1758
  Add(element: SettingElement): void;
1520
1759
  Clear(): void;
@@ -1537,6 +1776,7 @@ export interface SettingsAttributeDictionary$instance extends Hashtable {
1537
1776
  export const SettingsAttributeDictionary: {
1538
1777
  new(): SettingsAttributeDictionary;
1539
1778
  new(attributes: SettingsAttributeDictionary): SettingsAttributeDictionary;
1779
+ new(serializationInfo: SerializationInfo, streamingContext: StreamingContext): SettingsAttributeDictionary;
1540
1780
  };
1541
1781
 
1542
1782
 
@@ -1555,6 +1795,7 @@ export interface SettingsBase$instance {
1555
1795
 
1556
1796
 
1557
1797
  export const SettingsBase: {
1798
+ new(): SettingsBase;
1558
1799
  Synchronized(settingsBase: SettingsBase): SettingsBase;
1559
1800
  };
1560
1801
 
@@ -1567,6 +1808,7 @@ export interface SettingsContext$instance extends Hashtable {
1567
1808
 
1568
1809
  export const SettingsContext: {
1569
1810
  new(): SettingsContext;
1811
+ new(serializationInfo: SerializationInfo, streamingContext: StreamingContext): SettingsContext;
1570
1812
  };
1571
1813
 
1572
1814
 
@@ -1633,7 +1875,7 @@ export const SettingsManageabilityAttribute: {
1633
1875
  export type SettingsManageabilityAttribute = SettingsManageabilityAttribute$instance;
1634
1876
 
1635
1877
  export interface SettingsProperty$instance {
1636
- readonly Attributes: SettingsAttributeDictionary;
1878
+ Attributes: SettingsAttributeDictionary;
1637
1879
  DefaultValue: unknown;
1638
1880
  IsReadOnly: boolean;
1639
1881
  Name: string;
@@ -1655,7 +1897,17 @@ export const SettingsProperty: {
1655
1897
 
1656
1898
  export type SettingsProperty = SettingsProperty$instance;
1657
1899
 
1658
- export interface SettingsPropertyCollection$instance {
1900
+ export abstract class SettingsPropertyCollection$protected {
1901
+ protected OnAdd(property: SettingsProperty): void;
1902
+ protected OnAddComplete(property: SettingsProperty): void;
1903
+ protected OnClear(): void;
1904
+ protected OnClearComplete(): void;
1905
+ protected OnRemove(property: SettingsProperty): void;
1906
+ protected OnRemoveComplete(property: SettingsProperty): void;
1907
+ }
1908
+
1909
+
1910
+ export interface SettingsPropertyCollection$instance extends SettingsPropertyCollection$protected {
1659
1911
  readonly Count: int;
1660
1912
  readonly IsSynchronized: boolean;
1661
1913
  readonly Item: SettingsProperty;
@@ -1684,6 +1936,7 @@ export interface SettingsPropertyIsReadOnlyException$instance extends Exception
1684
1936
  export const SettingsPropertyIsReadOnlyException: {
1685
1937
  new(message: string): SettingsPropertyIsReadOnlyException;
1686
1938
  new(message: string, innerException: Exception): SettingsPropertyIsReadOnlyException;
1939
+ new(info: SerializationInfo, context: StreamingContext): SettingsPropertyIsReadOnlyException;
1687
1940
  new(): SettingsPropertyIsReadOnlyException;
1688
1941
  };
1689
1942
 
@@ -1697,6 +1950,7 @@ export interface SettingsPropertyNotFoundException$instance extends Exception {
1697
1950
  export const SettingsPropertyNotFoundException: {
1698
1951
  new(message: string): SettingsPropertyNotFoundException;
1699
1952
  new(message: string, innerException: Exception): SettingsPropertyNotFoundException;
1953
+ new(info: SerializationInfo, context: StreamingContext): SettingsPropertyNotFoundException;
1700
1954
  new(): SettingsPropertyNotFoundException;
1701
1955
  };
1702
1956
 
@@ -1707,10 +1961,10 @@ export interface SettingsPropertyValue$instance {
1707
1961
  Deserialized: boolean;
1708
1962
  IsDirty: boolean;
1709
1963
  readonly Name: string;
1710
- readonly Property: SettingsProperty;
1964
+ Property: SettingsProperty;
1711
1965
  PropertyValue: unknown;
1712
1966
  SerializedValue: unknown;
1713
- readonly UsingDefaultValue: boolean;
1967
+ UsingDefaultValue: boolean;
1714
1968
  }
1715
1969
 
1716
1970
 
@@ -1750,6 +2004,7 @@ export interface SettingsPropertyWrongTypeException$instance extends Exception {
1750
2004
  export const SettingsPropertyWrongTypeException: {
1751
2005
  new(message: string): SettingsPropertyWrongTypeException;
1752
2006
  new(message: string, innerException: Exception): SettingsPropertyWrongTypeException;
2007
+ new(info: SerializationInfo, context: StreamingContext): SettingsPropertyWrongTypeException;
1753
2008
  new(): SettingsPropertyWrongTypeException;
1754
2009
  };
1755
2010
 
@@ -1764,6 +2019,7 @@ export interface SettingsProvider$instance extends ProviderBase {
1764
2019
 
1765
2020
 
1766
2021
  export const SettingsProvider: {
2022
+ new(): SettingsProvider;
1767
2023
  };
1768
2024
 
1769
2025
 
@@ -1807,7 +2063,18 @@ export const SettingsSerializeAsAttribute: {
1807
2063
 
1808
2064
  export type SettingsSerializeAsAttribute = SettingsSerializeAsAttribute$instance;
1809
2065
 
1810
- export interface SettingValueElement$instance extends ConfigurationElement {
2066
+ export abstract class SettingValueElement$protected {
2067
+ protected readonly Properties: ConfigurationPropertyCollection;
2068
+ protected DeserializeElement(reader: XmlReader, serializeCollectionKey: boolean): void;
2069
+ protected IsModified(): boolean;
2070
+ protected Reset(parentElement: ConfigurationElement): void;
2071
+ protected ResetModified(): void;
2072
+ protected SerializeToXmlElement(writer: XmlWriter, elementName: string): boolean;
2073
+ protected Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
2074
+ }
2075
+
2076
+
2077
+ export interface SettingValueElement$instance extends SettingValueElement$protected, ConfigurationElement {
1811
2078
  ValueXml: XmlNode;
1812
2079
  Equals(settingValue: unknown): boolean;
1813
2080
  GetHashCode(): int;
@@ -1977,9 +2244,9 @@ export type TimeSpanValidator = TimeSpanValidator$instance;
1977
2244
 
1978
2245
  export interface TimeSpanValidatorAttribute$instance extends ConfigurationValidatorAttribute {
1979
2246
  ExcludeRange: boolean;
1980
- readonly MaxValue: TimeSpan;
2247
+ MaxValue: TimeSpan;
1981
2248
  MaxValueString: string;
1982
- readonly MinValue: TimeSpan;
2249
+ MinValue: TimeSpan;
1983
2250
  MinValueString: string;
1984
2251
  readonly ValidatorInstance: ConfigurationValidatorBase;
1985
2252
  }
@@ -2007,7 +2274,12 @@ export const TypeNameConverter: {
2007
2274
 
2008
2275
  export type TypeNameConverter = TypeNameConverter$instance;
2009
2276
 
2010
- export interface UriSection$instance extends ConfigurationSection {
2277
+ export abstract class UriSection$protected {
2278
+ protected readonly Properties: ConfigurationPropertyCollection;
2279
+ }
2280
+
2281
+
2282
+ export interface UriSection$instance extends UriSection$protected, ConfigurationSection {
2011
2283
  readonly Idn: IdnElement;
2012
2284
  readonly IriParsing: IriParsingElement;
2013
2285
  readonly SchemeSettings: SchemeSettingElementCollection;