@tsonic/efcore-sqlserver 10.0.2 → 10.0.5
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.
- package/Azure/internal/index.d.ts +33 -41
- package/Azure.Core/internal/index.d.ts +55 -48
- package/Azure.Core.Cryptography/internal/index.d.ts +4 -0
- package/Azure.Core.Diagnostics/internal/index.d.ts +4 -6
- package/Azure.Core.Extensions/internal/index.d.ts +8 -0
- package/Azure.Core.GeoJson/internal/index.d.ts +43 -7
- package/Azure.Core.Pipeline/internal/index.d.ts +22 -30
- package/Azure.Core.Serialization/internal/index.d.ts +8 -3
- package/Azure.Identity/internal/index.d.ts +69 -28
- package/Azure.Messaging/internal/index.d.ts +7 -11
- package/Microsoft.Data/internal/index.d.ts +2 -1
- package/Microsoft.Data.SqlClient/internal/index.d.ts +133 -123
- package/Microsoft.Data.SqlClient.Diagnostics/internal/index.d.ts +90 -15
- package/Microsoft.Data.SqlClient.Server/internal/index.d.ts +2 -0
- package/Microsoft.Data.SqlTypes/internal/index.d.ts +8 -1
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +4 -6
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +11 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +86 -73
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +47 -49
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +9 -1
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +24 -22
- package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +10 -6
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +189 -194
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +4 -5
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +115 -191
- package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +31 -32
- package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +19 -12
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Identity.Client/internal/index.d.ts +108 -108
- package/Microsoft.Identity.Client.AppConfig/internal/index.d.ts +0 -1
- package/Microsoft.Identity.Client.AuthScheme/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.AuthScheme.PoP/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +3 -2
- package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +4 -4
- package/Microsoft.Identity.Client.Kerberos/internal/index.d.ts +1 -1
- package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -2
- package/Microsoft.Identity.Client.Utils/internal/index.d.ts +0 -1
- package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +13 -7
- package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +8 -10
- package/Microsoft.IdentityModel.Logging/internal/index.d.ts +7 -6
- package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +17 -2
- package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +19 -18
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/internal/index.d.ts +2 -0
- package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +119 -118
- package/Microsoft.IdentityModel.Tokens.d.ts +3 -0
- package/Microsoft.SqlServer.Server/internal/index.d.ts +4 -1
- package/System.ClientModel/internal/index.d.ts +19 -26
- package/System.ClientModel.Primitives/internal/index.d.ts +99 -124
- package/System.ClientModel.Primitives.d.ts +3 -0
- package/System.Configuration/internal/index.d.ts +293 -332
- package/System.Configuration.Internal/internal/index.d.ts +23 -2
- package/System.Configuration.Provider/internal/index.d.ts +7 -4
- package/System.Drawing.Configuration/internal/index.d.ts +2 -6
- package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +38 -16
- package/__internal/extensions/index.d.ts +915 -14
- package/package.json +1 -1
|
@@ -124,6 +124,8 @@ export type ValidatorCallback = (value: unknown) => void;
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
export interface IApplicationSettingsProvider$instance {
|
|
127
|
+
readonly __tsonic_iface_System_Configuration_IApplicationSettingsProvider: never;
|
|
128
|
+
|
|
127
129
|
GetPreviousVersion(context: SettingsContext, property: SettingsProperty): SettingsPropertyValue;
|
|
128
130
|
Reset(context: SettingsContext): void;
|
|
129
131
|
Upgrade(context: SettingsContext, properties: SettingsPropertyCollection): void;
|
|
@@ -133,6 +135,8 @@ export interface IApplicationSettingsProvider$instance {
|
|
|
133
135
|
export type IApplicationSettingsProvider = IApplicationSettingsProvider$instance;
|
|
134
136
|
|
|
135
137
|
export interface IConfigurationSectionHandler$instance {
|
|
138
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSectionHandler: never;
|
|
139
|
+
|
|
136
140
|
Create(parent: unknown, configContext: unknown, section: XmlNode): unknown;
|
|
137
141
|
}
|
|
138
142
|
|
|
@@ -140,6 +144,8 @@ export interface IConfigurationSectionHandler$instance {
|
|
|
140
144
|
export type IConfigurationSectionHandler = IConfigurationSectionHandler$instance;
|
|
141
145
|
|
|
142
146
|
export interface IConfigurationSystem$instance {
|
|
147
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSystem: never;
|
|
148
|
+
|
|
143
149
|
GetConfig(configKey: string): unknown;
|
|
144
150
|
Init(): void;
|
|
145
151
|
}
|
|
@@ -148,6 +154,8 @@ export interface IConfigurationSystem$instance {
|
|
|
148
154
|
export type IConfigurationSystem = IConfigurationSystem$instance;
|
|
149
155
|
|
|
150
156
|
export interface IPersistComponentSettings$instance {
|
|
157
|
+
readonly __tsonic_iface_System_Configuration_IPersistComponentSettings: never;
|
|
158
|
+
|
|
151
159
|
SaveSettings: boolean;
|
|
152
160
|
SettingsKey: string;
|
|
153
161
|
LoadComponentSettings(): void;
|
|
@@ -157,6 +165,8 @@ export interface IPersistComponentSettings$instance {
|
|
|
157
165
|
export type IPersistComponentSettings = IPersistComponentSettings$instance;
|
|
158
166
|
|
|
159
167
|
export interface ISettingsProviderService$instance {
|
|
168
|
+
readonly __tsonic_iface_System_Configuration_ISettingsProviderService: never;
|
|
169
|
+
|
|
160
170
|
GetSettingsProvider(property: SettingsProperty): SettingsProvider;
|
|
161
171
|
}
|
|
162
172
|
|
|
@@ -174,22 +184,20 @@ export const ApplicationScopedSettingAttribute: {
|
|
|
174
184
|
|
|
175
185
|
export type ApplicationScopedSettingAttribute = ApplicationScopedSettingAttribute$instance;
|
|
176
186
|
|
|
177
|
-
export
|
|
178
|
-
|
|
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
|
-
|
|
187
|
+
export interface ApplicationSettingsBase$instance extends SettingsBase {
|
|
188
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
184
189
|
|
|
185
|
-
export interface ApplicationSettingsBase$instance extends ApplicationSettingsBase$protected, SettingsBase {
|
|
186
190
|
readonly Context: SettingsContext;
|
|
187
|
-
|
|
191
|
+
[propertyName: string]: unknown;
|
|
188
192
|
readonly Properties: SettingsPropertyCollection;
|
|
189
193
|
readonly PropertyValues: SettingsPropertyValueCollection;
|
|
190
194
|
readonly Providers: SettingsProviderCollection;
|
|
191
195
|
SettingsKey: string;
|
|
192
196
|
GetPreviousVersion(propertyName: string): unknown;
|
|
197
|
+
OnPropertyChanged(sender: unknown, e: PropertyChangedEventArgs): void;
|
|
198
|
+
OnSettingChanging(sender: unknown, e: SettingChangingEventArgs): void;
|
|
199
|
+
OnSettingsLoaded(sender: unknown, e: SettingsLoadedEventArgs): void;
|
|
200
|
+
OnSettingsSaving(sender: unknown, e: CancelEventArgs): void;
|
|
193
201
|
Reload(): void;
|
|
194
202
|
Reset(): void;
|
|
195
203
|
Save(): void;
|
|
@@ -197,11 +205,7 @@ export interface ApplicationSettingsBase$instance extends ApplicationSettingsBas
|
|
|
197
205
|
}
|
|
198
206
|
|
|
199
207
|
|
|
200
|
-
export const ApplicationSettingsBase: {
|
|
201
|
-
new(): ApplicationSettingsBase;
|
|
202
|
-
new(owner: IComponent): ApplicationSettingsBase;
|
|
203
|
-
new(settingsKey: string): ApplicationSettingsBase;
|
|
204
|
-
new(owner: IComponent, settingsKey: string): ApplicationSettingsBase;
|
|
208
|
+
export const ApplicationSettingsBase: (abstract new() => ApplicationSettingsBase) & (abstract new(owner: IComponent) => ApplicationSettingsBase) & (abstract new(settingsKey: string) => ApplicationSettingsBase) & (abstract new(owner: IComponent, settingsKey: string) => ApplicationSettingsBase) & {
|
|
205
209
|
};
|
|
206
210
|
|
|
207
211
|
|
|
@@ -230,17 +234,13 @@ export const AppSettingsReader: {
|
|
|
230
234
|
|
|
231
235
|
export type AppSettingsReader = AppSettingsReader$instance;
|
|
232
236
|
|
|
233
|
-
export
|
|
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 {
|
|
237
|
+
export interface AppSettingsSection$instance extends ConfigurationSection {
|
|
242
238
|
File: string;
|
|
239
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
243
240
|
readonly Settings: KeyValueConfigurationCollection;
|
|
241
|
+
DeserializeElement(reader: XmlReader, serializeCollectionKey: boolean): void;
|
|
242
|
+
GetRuntimeObject(): unknown;
|
|
243
|
+
Reset(parentSection: ConfigurationElement): void;
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
|
|
@@ -278,12 +278,8 @@ export const CallbackValidatorAttribute: {
|
|
|
278
278
|
|
|
279
279
|
export type CallbackValidatorAttribute = CallbackValidatorAttribute$instance;
|
|
280
280
|
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
export interface ClientSettingsSection$instance extends ClientSettingsSection$protected, ConfigurationSection {
|
|
281
|
+
export interface ClientSettingsSection$instance extends ConfigurationSection {
|
|
282
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
287
283
|
readonly Settings: SettingElementCollection;
|
|
288
284
|
}
|
|
289
285
|
|
|
@@ -296,9 +292,13 @@ export const ClientSettingsSection: {
|
|
|
296
292
|
export type ClientSettingsSection = ClientSettingsSection$instance;
|
|
297
293
|
|
|
298
294
|
export interface CommaDelimitedStringCollection$instance extends StringCollection {
|
|
295
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
296
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
297
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
298
|
+
|
|
299
299
|
readonly IsModified: boolean;
|
|
300
300
|
IsReadOnly: boolean;
|
|
301
|
-
|
|
301
|
+
[index: number]: string;
|
|
302
302
|
Add(value: string): void;
|
|
303
303
|
AddRange(range: string[]): void;
|
|
304
304
|
Clear(): void;
|
|
@@ -306,7 +306,7 @@ export interface CommaDelimitedStringCollection$instance extends StringCollectio
|
|
|
306
306
|
Insert(index: int, value: string): void;
|
|
307
307
|
Remove(value: string): void;
|
|
308
308
|
SetReadOnly(): void;
|
|
309
|
-
ToString(): string
|
|
309
|
+
ToString(): string;
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
|
|
@@ -356,7 +356,6 @@ export interface Configuration$instance {
|
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
export const Configuration: {
|
|
359
|
-
new(): Configuration;
|
|
360
359
|
};
|
|
361
360
|
|
|
362
361
|
|
|
@@ -384,95 +383,86 @@ export interface ConfigurationConverterBase$instance extends TypeConverter {
|
|
|
384
383
|
}
|
|
385
384
|
|
|
386
385
|
|
|
387
|
-
export const ConfigurationConverterBase: {
|
|
388
|
-
new(): ConfigurationConverterBase;
|
|
386
|
+
export const ConfigurationConverterBase: (abstract new() => ConfigurationConverterBase) & {
|
|
389
387
|
};
|
|
390
388
|
|
|
391
389
|
|
|
392
390
|
export type ConfigurationConverterBase = ConfigurationConverterBase$instance;
|
|
393
391
|
|
|
394
|
-
export
|
|
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 {
|
|
392
|
+
export interface ConfigurationElement$instance {
|
|
419
393
|
readonly CurrentConfiguration: Configuration;
|
|
420
394
|
readonly ElementInformation: ElementInformation;
|
|
395
|
+
readonly ElementProperty: ConfigurationElementProperty;
|
|
421
396
|
readonly LockAllAttributesExcept: ConfigurationLockCollection;
|
|
422
397
|
readonly LockAllElementsExcept: ConfigurationLockCollection;
|
|
423
398
|
readonly LockAttributes: ConfigurationLockCollection;
|
|
424
399
|
readonly LockElements: ConfigurationLockCollection;
|
|
425
400
|
LockItem: boolean;
|
|
401
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
402
|
+
DeserializeElement(reader: XmlReader, serializeCollectionKey: boolean): void;
|
|
426
403
|
Equals(compareTo: unknown): boolean;
|
|
427
404
|
GetHashCode(): int;
|
|
405
|
+
GetTransformedAssemblyString(assemblyName: string): string;
|
|
406
|
+
GetTransformedTypeString(typeName: string): string;
|
|
407
|
+
Init(): void;
|
|
408
|
+
InitializeDefault(): void;
|
|
409
|
+
IsModified(): boolean;
|
|
428
410
|
IsReadOnly(): boolean;
|
|
411
|
+
ListErrors(errorList: IList): void;
|
|
412
|
+
OnDeserializeUnrecognizedAttribute(name: string, value: string): boolean;
|
|
413
|
+
OnDeserializeUnrecognizedElement(elementName: string, reader: XmlReader): boolean;
|
|
414
|
+
OnRequiredPropertyNotFound(name: string): unknown;
|
|
415
|
+
PostDeserialize(): void;
|
|
416
|
+
PreSerialize(writer: XmlWriter): void;
|
|
417
|
+
Reset(parentElement: ConfigurationElement): void;
|
|
418
|
+
ResetModified(): void;
|
|
419
|
+
SerializeElement(writer: XmlWriter, serializeCollectionKey: boolean): boolean;
|
|
420
|
+
SerializeToXmlElement(writer: XmlWriter, elementName: string): boolean;
|
|
421
|
+
SetReadOnly(): void;
|
|
422
|
+
Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
|
|
429
423
|
}
|
|
430
424
|
|
|
431
425
|
|
|
432
|
-
export const ConfigurationElement: {
|
|
433
|
-
new(): ConfigurationElement;
|
|
426
|
+
export const ConfigurationElement: (abstract new() => ConfigurationElement) & {
|
|
434
427
|
};
|
|
435
428
|
|
|
436
429
|
|
|
437
430
|
export type ConfigurationElement = ConfigurationElement$instance;
|
|
438
431
|
|
|
439
|
-
export
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
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 {
|
|
432
|
+
export interface ConfigurationElementCollection$instance extends ConfigurationElement {
|
|
433
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
434
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
435
|
+
|
|
460
436
|
readonly CollectionType: ConfigurationElementCollectionType;
|
|
461
437
|
readonly Count: int;
|
|
438
|
+
readonly ElementName: string;
|
|
462
439
|
EmitClear: boolean;
|
|
463
440
|
readonly IsSynchronized: boolean;
|
|
464
441
|
readonly SyncRoot: unknown;
|
|
442
|
+
readonly ThrowOnDuplicate: boolean;
|
|
443
|
+
BaseAdd(element: ConfigurationElement): void;
|
|
444
|
+
BaseAdd(index: int, element: ConfigurationElement): void;
|
|
465
445
|
CopyTo(array: ConfigurationElement[], index: int): void;
|
|
446
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
447
|
+
CreateNewElement(): ConfigurationElement;
|
|
466
448
|
Equals(compareTo: unknown): boolean;
|
|
449
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
467
450
|
GetEnumerator(): IEnumerator;
|
|
468
451
|
GetHashCode(): int;
|
|
452
|
+
IsElementName(elementName: string): boolean;
|
|
453
|
+
IsElementRemovable(element: ConfigurationElement): boolean;
|
|
454
|
+
IsModified(): boolean;
|
|
469
455
|
IsReadOnly(): boolean;
|
|
456
|
+
OnDeserializeUnrecognizedElement(elementName: string, reader: XmlReader): boolean;
|
|
457
|
+
Reset(parentElement: ConfigurationElement): void;
|
|
458
|
+
ResetModified(): void;
|
|
459
|
+
SerializeElement(writer: XmlWriter, serializeCollectionKey: boolean): boolean;
|
|
460
|
+
SetReadOnly(): void;
|
|
461
|
+
Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
|
|
470
462
|
}
|
|
471
463
|
|
|
472
464
|
|
|
473
|
-
export const ConfigurationElementCollection: {
|
|
474
|
-
new(): ConfigurationElementCollection;
|
|
475
|
-
new(comparer: IComparer): ConfigurationElementCollection;
|
|
465
|
+
export const ConfigurationElementCollection: (abstract new() => ConfigurationElementCollection) & (abstract new(comparer: IComparer) => ConfigurationElementCollection) & {
|
|
476
466
|
};
|
|
477
467
|
|
|
478
468
|
|
|
@@ -491,6 +481,8 @@ export const ConfigurationElementProperty: {
|
|
|
491
481
|
export type ConfigurationElementProperty = ConfigurationElementProperty$instance;
|
|
492
482
|
|
|
493
483
|
export interface ConfigurationErrorsException$instance extends ConfigurationException {
|
|
484
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
485
|
+
|
|
494
486
|
readonly Errors: ICollection;
|
|
495
487
|
readonly Filename: string;
|
|
496
488
|
readonly Line: int;
|
|
@@ -509,7 +501,6 @@ export const ConfigurationErrorsException: {
|
|
|
509
501
|
new(message: string, inner: Exception, node: XmlNode): ConfigurationErrorsException;
|
|
510
502
|
new(message: string, reader: XmlReader): ConfigurationErrorsException;
|
|
511
503
|
new(message: string, inner: Exception, reader: XmlReader): ConfigurationErrorsException;
|
|
512
|
-
new(info: SerializationInfo, context: StreamingContext): ConfigurationErrorsException;
|
|
513
504
|
GetFilename(node: XmlNode): string;
|
|
514
505
|
GetFilename(reader: XmlReader): string;
|
|
515
506
|
GetLineNumber(node: XmlNode): int;
|
|
@@ -520,6 +511,8 @@ export const ConfigurationErrorsException: {
|
|
|
520
511
|
export type ConfigurationErrorsException = ConfigurationErrorsException$instance;
|
|
521
512
|
|
|
522
513
|
export interface ConfigurationException$instance extends SystemException {
|
|
514
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
515
|
+
|
|
523
516
|
readonly BareMessage: string;
|
|
524
517
|
readonly Filename: string;
|
|
525
518
|
readonly Line: int;
|
|
@@ -529,7 +522,6 @@ export interface ConfigurationException$instance extends SystemException {
|
|
|
529
522
|
|
|
530
523
|
|
|
531
524
|
export const ConfigurationException: {
|
|
532
|
-
new(info: SerializationInfo, context: StreamingContext): ConfigurationException;
|
|
533
525
|
new(): ConfigurationException;
|
|
534
526
|
new(message: string): ConfigurationException;
|
|
535
527
|
new(message: string, inner: Exception): ConfigurationException;
|
|
@@ -545,6 +537,8 @@ export const ConfigurationException: {
|
|
|
545
537
|
export type ConfigurationException = ConfigurationException$instance;
|
|
546
538
|
|
|
547
539
|
export interface ConfigurationFileMap$instance {
|
|
540
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
541
|
+
|
|
548
542
|
MachineConfigFilename: string;
|
|
549
543
|
Clone(): unknown;
|
|
550
544
|
}
|
|
@@ -565,25 +559,29 @@ export interface ConfigurationLocation$instance {
|
|
|
565
559
|
|
|
566
560
|
|
|
567
561
|
export const ConfigurationLocation: {
|
|
568
|
-
new(): ConfigurationLocation;
|
|
569
562
|
};
|
|
570
563
|
|
|
571
564
|
|
|
572
565
|
export type ConfigurationLocation = ConfigurationLocation$instance;
|
|
573
566
|
|
|
574
567
|
export interface ConfigurationLocationCollection$instance extends ReadOnlyCollectionBase {
|
|
575
|
-
readonly
|
|
568
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
569
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
570
|
+
|
|
571
|
+
readonly [index: number]: ConfigurationLocation;
|
|
576
572
|
}
|
|
577
573
|
|
|
578
574
|
|
|
579
575
|
export const ConfigurationLocationCollection: {
|
|
580
|
-
new(): ConfigurationLocationCollection;
|
|
581
576
|
};
|
|
582
577
|
|
|
583
578
|
|
|
584
579
|
export type ConfigurationLocationCollection = ConfigurationLocationCollection$instance;
|
|
585
580
|
|
|
586
581
|
export interface ConfigurationLockCollection$instance {
|
|
582
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
583
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
584
|
+
|
|
587
585
|
readonly AttributeList: string;
|
|
588
586
|
readonly Count: int;
|
|
589
587
|
readonly HasParentElements: boolean;
|
|
@@ -602,7 +600,6 @@ export interface ConfigurationLockCollection$instance {
|
|
|
602
600
|
|
|
603
601
|
|
|
604
602
|
export const ConfigurationLockCollection: {
|
|
605
|
-
new(): ConfigurationLockCollection;
|
|
606
603
|
};
|
|
607
604
|
|
|
608
605
|
|
|
@@ -653,9 +650,12 @@ export const ConfigurationPropertyAttribute: {
|
|
|
653
650
|
export type ConfigurationPropertyAttribute = ConfigurationPropertyAttribute$instance;
|
|
654
651
|
|
|
655
652
|
export interface ConfigurationPropertyCollection$instance {
|
|
653
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
654
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
655
|
+
|
|
656
656
|
readonly Count: int;
|
|
657
657
|
readonly IsSynchronized: boolean;
|
|
658
|
-
readonly
|
|
658
|
+
readonly [name: string]: ConfigurationProperty;
|
|
659
659
|
readonly SyncRoot: unknown;
|
|
660
660
|
Add(property: ConfigurationProperty): void;
|
|
661
661
|
Clear(): void;
|
|
@@ -673,31 +673,31 @@ export const ConfigurationPropertyCollection: {
|
|
|
673
673
|
|
|
674
674
|
export type ConfigurationPropertyCollection = ConfigurationPropertyCollection$instance;
|
|
675
675
|
|
|
676
|
-
export
|
|
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 {
|
|
676
|
+
export interface ConfigurationSection$instance extends ConfigurationElement {
|
|
689
677
|
readonly SectionInformation: SectionInformation;
|
|
678
|
+
DeserializeSection(reader: XmlReader): void;
|
|
679
|
+
GetRuntimeObject(): unknown;
|
|
680
|
+
IsModified(): boolean;
|
|
681
|
+
ResetModified(): void;
|
|
682
|
+
SerializeSection(parentElement: ConfigurationElement, name: string, saveMode: ConfigurationSaveMode): string;
|
|
683
|
+
ShouldSerializeElementInTargetVersion(element: ConfigurationElement, elementName: string, targetFramework: FrameworkName): boolean;
|
|
684
|
+
ShouldSerializePropertyInTargetVersion(property: ConfigurationProperty, propertyName: string, targetFramework: FrameworkName, parentConfigurationElement: ConfigurationElement): boolean;
|
|
685
|
+
ShouldSerializeSectionInTargetVersion(targetFramework: FrameworkName): boolean;
|
|
690
686
|
}
|
|
691
687
|
|
|
692
688
|
|
|
693
|
-
export const ConfigurationSection: {
|
|
694
|
-
new(): ConfigurationSection;
|
|
689
|
+
export const ConfigurationSection: (abstract new() => ConfigurationSection) & {
|
|
695
690
|
};
|
|
696
691
|
|
|
697
692
|
|
|
698
693
|
export type ConfigurationSection = ConfigurationSection$instance;
|
|
699
694
|
|
|
700
695
|
export interface ConfigurationSectionCollection$instance extends NameObjectCollectionBase {
|
|
696
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
697
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
698
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
699
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
700
|
+
|
|
701
701
|
Add(name: string, section: ConfigurationSection): void;
|
|
702
702
|
Clear(): void;
|
|
703
703
|
CopyTo(array: ConfigurationSection[], index: int): void;
|
|
@@ -713,18 +713,12 @@ export interface ConfigurationSectionCollection$instance extends NameObjectColle
|
|
|
713
713
|
|
|
714
714
|
|
|
715
715
|
export const ConfigurationSectionCollection: {
|
|
716
|
-
new(): ConfigurationSectionCollection;
|
|
717
716
|
};
|
|
718
717
|
|
|
719
718
|
|
|
720
719
|
export type ConfigurationSectionCollection = ConfigurationSectionCollection$instance;
|
|
721
720
|
|
|
722
|
-
export
|
|
723
|
-
protected ShouldSerializeSectionGroupInTargetVersion(targetFramework: FrameworkName): boolean;
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
export interface ConfigurationSectionGroup$instance extends ConfigurationSectionGroup$protected {
|
|
721
|
+
export interface ConfigurationSectionGroup$instance {
|
|
728
722
|
IsDeclarationRequired: boolean;
|
|
729
723
|
IsDeclared: boolean;
|
|
730
724
|
Name: string;
|
|
@@ -734,6 +728,7 @@ export interface ConfigurationSectionGroup$instance extends ConfigurationSection
|
|
|
734
728
|
Type: string;
|
|
735
729
|
ForceDeclaration(): void;
|
|
736
730
|
ForceDeclaration(force: boolean): void;
|
|
731
|
+
ShouldSerializeSectionGroupInTargetVersion(targetFramework: FrameworkName): boolean;
|
|
737
732
|
}
|
|
738
733
|
|
|
739
734
|
|
|
@@ -745,6 +740,11 @@ export const ConfigurationSectionGroup: {
|
|
|
745
740
|
export type ConfigurationSectionGroup = ConfigurationSectionGroup$instance;
|
|
746
741
|
|
|
747
742
|
export interface ConfigurationSectionGroupCollection$instance extends NameObjectCollectionBase {
|
|
743
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
744
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
745
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
746
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
747
|
+
|
|
748
748
|
Add(name: string, sectionGroup: ConfigurationSectionGroup): void;
|
|
749
749
|
Clear(): void;
|
|
750
750
|
CopyTo(array: ConfigurationSectionGroup[], index: int): void;
|
|
@@ -760,7 +760,6 @@ export interface ConfigurationSectionGroupCollection$instance extends NameObject
|
|
|
760
760
|
|
|
761
761
|
|
|
762
762
|
export const ConfigurationSectionGroupCollection: {
|
|
763
|
-
new(): ConfigurationSectionGroupCollection;
|
|
764
763
|
};
|
|
765
764
|
|
|
766
765
|
|
|
@@ -771,7 +770,6 @@ export interface ConfigurationSettings$instance {
|
|
|
771
770
|
|
|
772
771
|
|
|
773
772
|
export const ConfigurationSettings: {
|
|
774
|
-
new(): ConfigurationSettings;
|
|
775
773
|
readonly AppSettings: NameValueCollection;
|
|
776
774
|
GetConfig(sectionName: string): unknown;
|
|
777
775
|
};
|
|
@@ -786,7 +784,6 @@ export interface ConfigurationValidatorAttribute$instance extends Attribute {
|
|
|
786
784
|
|
|
787
785
|
|
|
788
786
|
export const ConfigurationValidatorAttribute: {
|
|
789
|
-
new(): ConfigurationValidatorAttribute;
|
|
790
787
|
new(validator: Type): ConfigurationValidatorAttribute;
|
|
791
788
|
};
|
|
792
789
|
|
|
@@ -799,14 +796,18 @@ export interface ConfigurationValidatorBase$instance {
|
|
|
799
796
|
}
|
|
800
797
|
|
|
801
798
|
|
|
802
|
-
export const ConfigurationValidatorBase: {
|
|
803
|
-
new(): ConfigurationValidatorBase;
|
|
799
|
+
export const ConfigurationValidatorBase: (abstract new() => ConfigurationValidatorBase) & {
|
|
804
800
|
};
|
|
805
801
|
|
|
806
802
|
|
|
807
803
|
export type ConfigurationValidatorBase = ConfigurationValidatorBase$instance;
|
|
808
804
|
|
|
809
805
|
export interface ConfigXmlDocument$instance extends XmlDocument {
|
|
806
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
807
|
+
readonly __tsonic_iface_System_Configuration_Internal_IConfigErrorInfo: never;
|
|
808
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
809
|
+
readonly __tsonic_iface_System_Xml_XPath_IXPathNavigable: never;
|
|
810
|
+
|
|
810
811
|
readonly Filename: string;
|
|
811
812
|
readonly LineNumber: int;
|
|
812
813
|
CreateAttribute(prefix: string, localName: string, namespaceUri: string): XmlAttribute;
|
|
@@ -830,21 +831,17 @@ export interface __ConfigXmlDocument$views {
|
|
|
830
831
|
As_IConfigErrorInfo(): System_Configuration_Internal_Internal.IConfigErrorInfo$instance;
|
|
831
832
|
}
|
|
832
833
|
|
|
833
|
-
export interface ConfigXmlDocument$instance extends System_Configuration_Internal_Internal.IConfigErrorInfo$instance {}
|
|
834
|
+
export interface ConfigXmlDocument$instance extends System_Configuration_Internal_Internal.IConfigErrorInfo$instance, System_Lib.ICloneable, System_Xml_XPath_Internal.IXPathNavigable {}
|
|
834
835
|
|
|
835
836
|
export type ConfigXmlDocument = ConfigXmlDocument$instance & __ConfigXmlDocument$views;
|
|
836
837
|
|
|
837
838
|
|
|
838
|
-
export
|
|
839
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
export interface ConnectionStringSettings$instance extends ConnectionStringSettings$protected, ConfigurationElement {
|
|
839
|
+
export interface ConnectionStringSettings$instance extends ConfigurationElement {
|
|
844
840
|
ConnectionString: string;
|
|
845
841
|
Name: string;
|
|
842
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
846
843
|
ProviderName: string;
|
|
847
|
-
ToString(): string
|
|
844
|
+
ToString(): string;
|
|
848
845
|
}
|
|
849
846
|
|
|
850
847
|
|
|
@@ -857,21 +854,20 @@ export const ConnectionStringSettings: {
|
|
|
857
854
|
|
|
858
855
|
export type ConnectionStringSettings = ConnectionStringSettings$instance;
|
|
859
856
|
|
|
860
|
-
export
|
|
861
|
-
|
|
862
|
-
|
|
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
|
-
|
|
857
|
+
export interface ConnectionStringSettingsCollection$instance extends ConfigurationElementCollection {
|
|
858
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
859
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
869
860
|
|
|
870
|
-
|
|
861
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
871
862
|
Add(settings: ConnectionStringSettings): void;
|
|
863
|
+
BaseAdd(index: int, element: ConfigurationElement): void;
|
|
864
|
+
BaseAdd(element: ConfigurationElement): void;
|
|
872
865
|
Clear(): void;
|
|
866
|
+
CreateNewElement(): ConfigurationElement;
|
|
867
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
873
868
|
get_Item(index: int): ConnectionStringSettings;
|
|
874
869
|
get_Item(name: string): ConnectionStringSettings;
|
|
870
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
875
871
|
IndexOf(settings: ConnectionStringSettings): int;
|
|
876
872
|
Remove(settings: ConnectionStringSettings): void;
|
|
877
873
|
Remove(name: string): void;
|
|
@@ -887,14 +883,10 @@ export const ConnectionStringSettingsCollection: {
|
|
|
887
883
|
|
|
888
884
|
export type ConnectionStringSettingsCollection = ConnectionStringSettingsCollection$instance;
|
|
889
885
|
|
|
890
|
-
export
|
|
891
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
892
|
-
protected GetRuntimeObject(): unknown;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
export interface ConnectionStringsSection$instance extends ConnectionStringsSection$protected, ConfigurationSection {
|
|
886
|
+
export interface ConnectionStringsSection$instance extends ConfigurationSection {
|
|
897
887
|
readonly ConnectionStrings: ConnectionStringSettingsCollection;
|
|
888
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
889
|
+
GetRuntimeObject(): unknown;
|
|
898
890
|
}
|
|
899
891
|
|
|
900
892
|
|
|
@@ -913,23 +905,18 @@ export interface ContextInformation$instance {
|
|
|
913
905
|
|
|
914
906
|
|
|
915
907
|
export const ContextInformation: {
|
|
916
|
-
new(): ContextInformation;
|
|
917
908
|
};
|
|
918
909
|
|
|
919
910
|
|
|
920
911
|
export type ContextInformation = ContextInformation$instance;
|
|
921
912
|
|
|
922
|
-
export
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
export interface DefaultSection$instance extends DefaultSection$protected, ConfigurationSection {
|
|
913
|
+
export interface DefaultSection$instance extends ConfigurationSection {
|
|
914
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
915
|
+
DeserializeSection(xmlReader: XmlReader): void;
|
|
916
|
+
IsModified(): boolean;
|
|
917
|
+
Reset(parentSection: ConfigurationElement): void;
|
|
918
|
+
ResetModified(): void;
|
|
919
|
+
SerializeSection(parentSection: ConfigurationElement, name: string, saveMode: ConfigurationSaveMode): string;
|
|
933
920
|
}
|
|
934
921
|
|
|
935
922
|
|
|
@@ -965,13 +952,11 @@ export const DefaultValidator: {
|
|
|
965
952
|
|
|
966
953
|
export type DefaultValidator = DefaultValidator$instance;
|
|
967
954
|
|
|
968
|
-
export
|
|
969
|
-
|
|
970
|
-
protected readonly ValueAttributeName: string;
|
|
971
|
-
}
|
|
972
|
-
|
|
955
|
+
export interface DictionarySectionHandler$instance {
|
|
956
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSectionHandler: never;
|
|
973
957
|
|
|
974
|
-
|
|
958
|
+
readonly KeyAttributeName: string;
|
|
959
|
+
readonly ValueAttributeName: string;
|
|
975
960
|
Create(parent: unknown, context: unknown, section: XmlNode): unknown;
|
|
976
961
|
}
|
|
977
962
|
|
|
@@ -1019,13 +1004,14 @@ export interface ElementInformation$instance {
|
|
|
1019
1004
|
|
|
1020
1005
|
|
|
1021
1006
|
export const ElementInformation: {
|
|
1022
|
-
new(): ElementInformation;
|
|
1023
1007
|
};
|
|
1024
1008
|
|
|
1025
1009
|
|
|
1026
1010
|
export type ElementInformation = ElementInformation$instance;
|
|
1027
1011
|
|
|
1028
1012
|
export interface ExeConfigurationFileMap$instance extends ConfigurationFileMap {
|
|
1013
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1014
|
+
|
|
1029
1015
|
ExeConfigFilename: string;
|
|
1030
1016
|
LocalUserConfigFilename: string;
|
|
1031
1017
|
RoamingUserConfigFilename: string;
|
|
@@ -1048,7 +1034,6 @@ export interface ExeContext$instance {
|
|
|
1048
1034
|
|
|
1049
1035
|
|
|
1050
1036
|
export const ExeContext: {
|
|
1051
|
-
new(): ExeContext;
|
|
1052
1037
|
};
|
|
1053
1038
|
|
|
1054
1039
|
|
|
@@ -1067,13 +1052,9 @@ export const GenericEnumConverter: {
|
|
|
1067
1052
|
|
|
1068
1053
|
export type GenericEnumConverter = GenericEnumConverter$instance;
|
|
1069
1054
|
|
|
1070
|
-
export
|
|
1071
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
export interface IdnElement$instance extends IdnElement$protected, ConfigurationElement {
|
|
1055
|
+
export interface IdnElement$instance extends ConfigurationElement {
|
|
1076
1056
|
Enabled: UriIdnScope;
|
|
1057
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1077
1058
|
}
|
|
1078
1059
|
|
|
1079
1060
|
|
|
@@ -1084,17 +1065,13 @@ export const IdnElement: {
|
|
|
1084
1065
|
|
|
1085
1066
|
export type IdnElement = IdnElement$instance;
|
|
1086
1067
|
|
|
1087
|
-
export
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
export interface IgnoreSection$instance extends IgnoreSection$protected, ConfigurationSection {
|
|
1068
|
+
export interface IgnoreSection$instance extends ConfigurationSection {
|
|
1069
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1070
|
+
DeserializeSection(xmlReader: XmlReader): void;
|
|
1071
|
+
IsModified(): boolean;
|
|
1072
|
+
Reset(parentSection: ConfigurationElement): void;
|
|
1073
|
+
ResetModified(): void;
|
|
1074
|
+
SerializeSection(parentSection: ConfigurationElement, name: string, saveMode: ConfigurationSaveMode): string;
|
|
1098
1075
|
}
|
|
1099
1076
|
|
|
1100
1077
|
|
|
@@ -1106,6 +1083,8 @@ export const IgnoreSection: {
|
|
|
1106
1083
|
export type IgnoreSection = IgnoreSection$instance;
|
|
1107
1084
|
|
|
1108
1085
|
export interface IgnoreSectionHandler$instance {
|
|
1086
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSectionHandler: never;
|
|
1087
|
+
|
|
1109
1088
|
Create(parent: unknown, configContext: unknown, section: XmlNode): unknown;
|
|
1110
1089
|
}
|
|
1111
1090
|
|
|
@@ -1180,13 +1159,9 @@ export const IntegerValidatorAttribute: {
|
|
|
1180
1159
|
|
|
1181
1160
|
export type IntegerValidatorAttribute = IntegerValidatorAttribute$instance;
|
|
1182
1161
|
|
|
1183
|
-
export
|
|
1184
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
export interface IriParsingElement$instance extends IriParsingElement$protected, ConfigurationElement {
|
|
1162
|
+
export interface IriParsingElement$instance extends ConfigurationElement {
|
|
1189
1163
|
Enabled: boolean;
|
|
1164
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1190
1165
|
}
|
|
1191
1166
|
|
|
1192
1167
|
|
|
@@ -1197,21 +1172,20 @@ export const IriParsingElement: {
|
|
|
1197
1172
|
|
|
1198
1173
|
export type IriParsingElement = IriParsingElement$instance;
|
|
1199
1174
|
|
|
1200
|
-
export
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
protected CreateNewElement2(): ConfigurationElement;
|
|
1204
|
-
protected CreateNewElement(elementName: string): ConfigurationElement;
|
|
1205
|
-
protected GetElementKey(element: ConfigurationElement): unknown;
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1175
|
+
export interface KeyValueConfigurationCollection$instance extends ConfigurationElementCollection {
|
|
1176
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1177
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1208
1178
|
|
|
1209
|
-
export interface KeyValueConfigurationCollection$instance extends KeyValueConfigurationCollection$protected, ConfigurationElementCollection {
|
|
1210
1179
|
readonly AllKeys: string[];
|
|
1211
|
-
readonly
|
|
1180
|
+
readonly [key: string]: KeyValueConfigurationElement;
|
|
1181
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1182
|
+
readonly ThrowOnDuplicate: boolean;
|
|
1212
1183
|
Add(keyValue: KeyValueConfigurationElement): void;
|
|
1213
1184
|
Add(key: string, value: string): void;
|
|
1214
1185
|
Clear(): void;
|
|
1186
|
+
CreateNewElement(): ConfigurationElement;
|
|
1187
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
1188
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
1215
1189
|
Remove(key: string): void;
|
|
1216
1190
|
}
|
|
1217
1191
|
|
|
@@ -1223,15 +1197,11 @@ export const KeyValueConfigurationCollection: {
|
|
|
1223
1197
|
|
|
1224
1198
|
export type KeyValueConfigurationCollection = KeyValueConfigurationCollection$instance;
|
|
1225
1199
|
|
|
1226
|
-
export
|
|
1227
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1228
|
-
protected Init(): void;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
export interface KeyValueConfigurationElement$instance extends KeyValueConfigurationElement$protected, ConfigurationElement {
|
|
1200
|
+
export interface KeyValueConfigurationElement$instance extends ConfigurationElement {
|
|
1233
1201
|
readonly Key: string;
|
|
1202
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1234
1203
|
Value: string;
|
|
1204
|
+
Init(): void;
|
|
1235
1205
|
}
|
|
1236
1206
|
|
|
1237
1207
|
|
|
@@ -1243,6 +1213,8 @@ export const KeyValueConfigurationElement: {
|
|
|
1243
1213
|
export type KeyValueConfigurationElement = KeyValueConfigurationElement$instance;
|
|
1244
1214
|
|
|
1245
1215
|
export interface LocalFileSettingsProvider$instance extends SettingsProvider {
|
|
1216
|
+
readonly __tsonic_iface_System_Configuration_IApplicationSettingsProvider: never;
|
|
1217
|
+
|
|
1246
1218
|
ApplicationName: string;
|
|
1247
1219
|
GetPreviousVersion(context: SettingsContext, property: SettingsProperty): SettingsPropertyValue;
|
|
1248
1220
|
GetPropertyValues(context: SettingsContext, properties: SettingsPropertyCollection): SettingsPropertyValueCollection;
|
|
@@ -1297,19 +1269,18 @@ export const LongValidatorAttribute: {
|
|
|
1297
1269
|
|
|
1298
1270
|
export type LongValidatorAttribute = LongValidatorAttribute$instance;
|
|
1299
1271
|
|
|
1300
|
-
export
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
protected CreateNewElement(elementName: string): ConfigurationElement;
|
|
1304
|
-
protected GetElementKey(element: ConfigurationElement): unknown;
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1272
|
+
export interface NameValueConfigurationCollection$instance extends ConfigurationElementCollection {
|
|
1273
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1274
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1307
1275
|
|
|
1308
|
-
export interface NameValueConfigurationCollection$instance extends NameValueConfigurationCollection$protected, ConfigurationElementCollection {
|
|
1309
1276
|
readonly AllKeys: string[];
|
|
1310
|
-
|
|
1277
|
+
[name: string]: NameValueConfigurationElement;
|
|
1278
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1311
1279
|
Add(nameValue: NameValueConfigurationElement): void;
|
|
1312
1280
|
Clear(): void;
|
|
1281
|
+
CreateNewElement(): ConfigurationElement;
|
|
1282
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
1283
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
1313
1284
|
Remove(nameValue: NameValueConfigurationElement): void;
|
|
1314
1285
|
Remove(name: string): void;
|
|
1315
1286
|
}
|
|
@@ -1322,13 +1293,9 @@ export const NameValueConfigurationCollection: {
|
|
|
1322
1293
|
|
|
1323
1294
|
export type NameValueConfigurationCollection = NameValueConfigurationCollection$instance;
|
|
1324
1295
|
|
|
1325
|
-
export
|
|
1326
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
export interface NameValueConfigurationElement$instance extends NameValueConfigurationElement$protected, ConfigurationElement {
|
|
1296
|
+
export interface NameValueConfigurationElement$instance extends ConfigurationElement {
|
|
1331
1297
|
readonly Name: string;
|
|
1298
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1332
1299
|
Value: string;
|
|
1333
1300
|
}
|
|
1334
1301
|
|
|
@@ -1341,6 +1308,8 @@ export const NameValueConfigurationElement: {
|
|
|
1341
1308
|
export type NameValueConfigurationElement = NameValueConfigurationElement$instance;
|
|
1342
1309
|
|
|
1343
1310
|
export interface NameValueFileSectionHandler$instance {
|
|
1311
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSectionHandler: never;
|
|
1312
|
+
|
|
1344
1313
|
Create(parent: unknown, configContext: unknown, section: XmlNode): unknown;
|
|
1345
1314
|
}
|
|
1346
1315
|
|
|
@@ -1359,13 +1328,11 @@ export interface NameValueFileSectionHandler$instance extends IConfigurationSect
|
|
|
1359
1328
|
export type NameValueFileSectionHandler = NameValueFileSectionHandler$instance & __NameValueFileSectionHandler$views;
|
|
1360
1329
|
|
|
1361
1330
|
|
|
1362
|
-
export
|
|
1363
|
-
|
|
1364
|
-
protected readonly ValueAttributeName: string;
|
|
1365
|
-
}
|
|
1366
|
-
|
|
1331
|
+
export interface NameValueSectionHandler$instance {
|
|
1332
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSectionHandler: never;
|
|
1367
1333
|
|
|
1368
|
-
|
|
1334
|
+
readonly KeyAttributeName: string;
|
|
1335
|
+
readonly ValueAttributeName: string;
|
|
1369
1336
|
Create(parent: unknown, context: unknown, section: XmlNode): unknown;
|
|
1370
1337
|
}
|
|
1371
1338
|
|
|
@@ -1439,21 +1406,24 @@ export interface PropertyInformation$instance {
|
|
|
1439
1406
|
|
|
1440
1407
|
|
|
1441
1408
|
export const PropertyInformation: {
|
|
1442
|
-
new(): PropertyInformation;
|
|
1443
1409
|
};
|
|
1444
1410
|
|
|
1445
1411
|
|
|
1446
1412
|
export type PropertyInformation = PropertyInformation$instance;
|
|
1447
1413
|
|
|
1448
1414
|
export interface PropertyInformationCollection$instance extends NameObjectCollectionBase {
|
|
1449
|
-
readonly
|
|
1415
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1416
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1417
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1418
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1419
|
+
|
|
1420
|
+
readonly [propertyName: string]: PropertyInformation;
|
|
1450
1421
|
CopyTo(array: PropertyInformation[], index: int): void;
|
|
1451
1422
|
GetEnumerator(): IEnumerator;
|
|
1452
1423
|
}
|
|
1453
1424
|
|
|
1454
1425
|
|
|
1455
1426
|
export const PropertyInformationCollection: {
|
|
1456
|
-
new(): PropertyInformationCollection;
|
|
1457
1427
|
};
|
|
1458
1428
|
|
|
1459
1429
|
|
|
@@ -1465,15 +1435,17 @@ export interface ProtectedConfigurationProvider$instance extends ProviderBase {
|
|
|
1465
1435
|
}
|
|
1466
1436
|
|
|
1467
1437
|
|
|
1468
|
-
export const ProtectedConfigurationProvider: {
|
|
1469
|
-
new(): ProtectedConfigurationProvider;
|
|
1438
|
+
export const ProtectedConfigurationProvider: (abstract new() => ProtectedConfigurationProvider) & {
|
|
1470
1439
|
};
|
|
1471
1440
|
|
|
1472
1441
|
|
|
1473
1442
|
export type ProtectedConfigurationProvider = ProtectedConfigurationProvider$instance;
|
|
1474
1443
|
|
|
1475
1444
|
export interface ProtectedConfigurationProviderCollection$instance extends ProviderCollection {
|
|
1476
|
-
readonly
|
|
1445
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1446
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1447
|
+
|
|
1448
|
+
readonly [name: string]: ProtectedConfigurationProvider | ProviderBase;
|
|
1477
1449
|
Add(provider: ProviderBase): void;
|
|
1478
1450
|
}
|
|
1479
1451
|
|
|
@@ -1485,13 +1457,9 @@ export const ProtectedConfigurationProviderCollection: {
|
|
|
1485
1457
|
|
|
1486
1458
|
export type ProtectedConfigurationProviderCollection = ProtectedConfigurationProviderCollection$instance;
|
|
1487
1459
|
|
|
1488
|
-
export
|
|
1489
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1490
|
-
}
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
export interface ProtectedConfigurationSection$instance extends ProtectedConfigurationSection$protected, ConfigurationSection {
|
|
1460
|
+
export interface ProtectedConfigurationSection$instance extends ConfigurationSection {
|
|
1494
1461
|
DefaultProvider: string;
|
|
1462
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1495
1463
|
readonly Providers: ProviderSettingsCollection;
|
|
1496
1464
|
}
|
|
1497
1465
|
|
|
@@ -1503,12 +1471,8 @@ export const ProtectedConfigurationSection: {
|
|
|
1503
1471
|
|
|
1504
1472
|
export type ProtectedConfigurationSection = ProtectedConfigurationSection$instance;
|
|
1505
1473
|
|
|
1506
|
-
export
|
|
1507
|
-
|
|
1508
|
-
}
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
export interface ProtectedProviderSettings$instance extends ProtectedProviderSettings$protected, ConfigurationElement {
|
|
1474
|
+
export interface ProtectedProviderSettings$instance extends ConfigurationElement {
|
|
1475
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1512
1476
|
readonly Providers: ProviderSettingsCollection;
|
|
1513
1477
|
}
|
|
1514
1478
|
|
|
@@ -1520,19 +1484,15 @@ export const ProtectedProviderSettings: {
|
|
|
1520
1484
|
|
|
1521
1485
|
export type ProtectedProviderSettings = ProtectedProviderSettings$instance;
|
|
1522
1486
|
|
|
1523
|
-
export
|
|
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 {
|
|
1487
|
+
export interface ProviderSettings$instance extends ConfigurationElement {
|
|
1533
1488
|
Name: string;
|
|
1534
1489
|
readonly Parameters: NameValueCollection;
|
|
1490
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1535
1491
|
Type: string;
|
|
1492
|
+
IsModified(): boolean;
|
|
1493
|
+
OnDeserializeUnrecognizedAttribute(name: string, value: string): boolean;
|
|
1494
|
+
Reset(parentElement: ConfigurationElement): void;
|
|
1495
|
+
Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
|
|
1536
1496
|
}
|
|
1537
1497
|
|
|
1538
1498
|
|
|
@@ -1544,19 +1504,18 @@ export const ProviderSettings: {
|
|
|
1544
1504
|
|
|
1545
1505
|
export type ProviderSettings = ProviderSettings$instance;
|
|
1546
1506
|
|
|
1547
|
-
export
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
protected CreateNewElement(elementName: string): ConfigurationElement;
|
|
1551
|
-
protected GetElementKey(element: ConfigurationElement): unknown;
|
|
1552
|
-
}
|
|
1507
|
+
export interface ProviderSettingsCollection$instance extends ConfigurationElementCollection {
|
|
1508
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1509
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1553
1510
|
|
|
1554
|
-
|
|
1555
|
-
export interface ProviderSettingsCollection$instance extends ProviderSettingsCollection$protected, ConfigurationElementCollection {
|
|
1511
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1556
1512
|
Add(provider: ProviderSettings): void;
|
|
1557
1513
|
Clear(): void;
|
|
1514
|
+
CreateNewElement(): ConfigurationElement;
|
|
1515
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
1558
1516
|
get_Item(key: string): ProviderSettings;
|
|
1559
1517
|
get_Item(index: int): ProviderSettings;
|
|
1518
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
1560
1519
|
Remove(name: string): void;
|
|
1561
1520
|
set_Item(index: int, value: ProviderSettings): void;
|
|
1562
1521
|
}
|
|
@@ -1618,14 +1577,10 @@ export const RsaProtectedConfigurationProvider: {
|
|
|
1618
1577
|
|
|
1619
1578
|
export type RsaProtectedConfigurationProvider = RsaProtectedConfigurationProvider$instance;
|
|
1620
1579
|
|
|
1621
|
-
export
|
|
1622
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1623
|
-
}
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
export interface SchemeSettingElement$instance extends SchemeSettingElement$protected, ConfigurationElement {
|
|
1580
|
+
export interface SchemeSettingElement$instance extends ConfigurationElement {
|
|
1627
1581
|
readonly GenericUriParserOptions: GenericUriParserOptions;
|
|
1628
1582
|
readonly Name: string;
|
|
1583
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1629
1584
|
}
|
|
1630
1585
|
|
|
1631
1586
|
|
|
@@ -1636,17 +1591,16 @@ export const SchemeSettingElement: {
|
|
|
1636
1591
|
|
|
1637
1592
|
export type SchemeSettingElement = SchemeSettingElement$instance;
|
|
1638
1593
|
|
|
1639
|
-
export
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
protected GetElementKey(element: ConfigurationElement): unknown;
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1594
|
+
export interface SchemeSettingElementCollection$instance extends ConfigurationElementCollection {
|
|
1595
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1596
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1645
1597
|
|
|
1646
|
-
export interface SchemeSettingElementCollection$instance extends SchemeSettingElementCollection$protected, ConfigurationElementCollection {
|
|
1647
1598
|
readonly CollectionType: ConfigurationElementCollectionType;
|
|
1599
|
+
CreateNewElement(): ConfigurationElement;
|
|
1600
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
1648
1601
|
get_Item(index: int): SchemeSettingElement;
|
|
1649
1602
|
get_Item(name: string): SchemeSettingElement;
|
|
1603
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
1650
1604
|
IndexOf(element: SchemeSettingElement): int;
|
|
1651
1605
|
}
|
|
1652
1606
|
|
|
@@ -1691,7 +1645,6 @@ export interface SectionInformation$instance {
|
|
|
1691
1645
|
|
|
1692
1646
|
|
|
1693
1647
|
export const SectionInformation: {
|
|
1694
|
-
new(): SectionInformation;
|
|
1695
1648
|
};
|
|
1696
1649
|
|
|
1697
1650
|
|
|
@@ -1723,13 +1676,9 @@ export const SettingChangingEventArgs: {
|
|
|
1723
1676
|
|
|
1724
1677
|
export type SettingChangingEventArgs = SettingChangingEventArgs$instance;
|
|
1725
1678
|
|
|
1726
|
-
export
|
|
1727
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
export interface SettingElement$instance extends SettingElement$protected, ConfigurationElement {
|
|
1679
|
+
export interface SettingElement$instance extends ConfigurationElement {
|
|
1732
1680
|
Name: string;
|
|
1681
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
1733
1682
|
SerializeAs: SettingsSerializeAs;
|
|
1734
1683
|
Value: SettingValueElement;
|
|
1735
1684
|
Equals(settings: unknown): boolean;
|
|
@@ -1745,19 +1694,18 @@ export const SettingElement: {
|
|
|
1745
1694
|
|
|
1746
1695
|
export type SettingElement = SettingElement$instance;
|
|
1747
1696
|
|
|
1748
|
-
export
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
protected CreateNewElement(elementName: string): ConfigurationElement;
|
|
1752
|
-
protected GetElementKey(element: ConfigurationElement): unknown;
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1697
|
+
export interface SettingElementCollection$instance extends ConfigurationElementCollection {
|
|
1698
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1699
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1755
1700
|
|
|
1756
|
-
export interface SettingElementCollection$instance extends SettingElementCollection$protected, ConfigurationElementCollection {
|
|
1757
1701
|
readonly CollectionType: ConfigurationElementCollectionType;
|
|
1702
|
+
readonly ElementName: string;
|
|
1758
1703
|
Add(element: SettingElement): void;
|
|
1759
1704
|
Clear(): void;
|
|
1705
|
+
CreateNewElement(): ConfigurationElement;
|
|
1706
|
+
CreateNewElement(elementName: string): ConfigurationElement;
|
|
1760
1707
|
Get(elementKey: string): SettingElement;
|
|
1708
|
+
GetElementKey(element: ConfigurationElement): unknown;
|
|
1761
1709
|
Remove(element: SettingElement): void;
|
|
1762
1710
|
}
|
|
1763
1711
|
|
|
@@ -1770,13 +1718,19 @@ export const SettingElementCollection: {
|
|
|
1770
1718
|
export type SettingElementCollection = SettingElementCollection$instance;
|
|
1771
1719
|
|
|
1772
1720
|
export interface SettingsAttributeDictionary$instance extends Hashtable {
|
|
1721
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1722
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
1723
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1724
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1725
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1726
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1727
|
+
|
|
1773
1728
|
}
|
|
1774
1729
|
|
|
1775
1730
|
|
|
1776
1731
|
export const SettingsAttributeDictionary: {
|
|
1777
1732
|
new(): SettingsAttributeDictionary;
|
|
1778
1733
|
new(attributes: SettingsAttributeDictionary): SettingsAttributeDictionary;
|
|
1779
|
-
new(serializationInfo: SerializationInfo, streamingContext: StreamingContext): SettingsAttributeDictionary;
|
|
1780
1734
|
};
|
|
1781
1735
|
|
|
1782
1736
|
|
|
@@ -1785,7 +1739,7 @@ export type SettingsAttributeDictionary = SettingsAttributeDictionary$instance;
|
|
|
1785
1739
|
export interface SettingsBase$instance {
|
|
1786
1740
|
readonly Context: SettingsContext;
|
|
1787
1741
|
readonly IsSynchronized: boolean;
|
|
1788
|
-
|
|
1742
|
+
[propertyName: string]: unknown;
|
|
1789
1743
|
readonly Properties: SettingsPropertyCollection;
|
|
1790
1744
|
readonly PropertyValues: SettingsPropertyValueCollection;
|
|
1791
1745
|
readonly Providers: SettingsProviderCollection;
|
|
@@ -1794,8 +1748,7 @@ export interface SettingsBase$instance {
|
|
|
1794
1748
|
}
|
|
1795
1749
|
|
|
1796
1750
|
|
|
1797
|
-
export const SettingsBase: {
|
|
1798
|
-
new(): SettingsBase;
|
|
1751
|
+
export const SettingsBase: (abstract new() => SettingsBase) & {
|
|
1799
1752
|
Synchronized(settingsBase: SettingsBase): SettingsBase;
|
|
1800
1753
|
};
|
|
1801
1754
|
|
|
@@ -1803,12 +1756,18 @@ export const SettingsBase: {
|
|
|
1803
1756
|
export type SettingsBase = SettingsBase$instance;
|
|
1804
1757
|
|
|
1805
1758
|
export interface SettingsContext$instance extends Hashtable {
|
|
1759
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1760
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
1761
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1762
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1763
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1764
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1765
|
+
|
|
1806
1766
|
}
|
|
1807
1767
|
|
|
1808
1768
|
|
|
1809
1769
|
export const SettingsContext: {
|
|
1810
1770
|
new(): SettingsContext;
|
|
1811
|
-
new(serializationInfo: SerializationInfo, streamingContext: StreamingContext): SettingsContext;
|
|
1812
1771
|
};
|
|
1813
1772
|
|
|
1814
1773
|
|
|
@@ -1880,8 +1839,7 @@ export interface SettingsProperty$instance {
|
|
|
1880
1839
|
IsReadOnly: boolean;
|
|
1881
1840
|
Name: string;
|
|
1882
1841
|
PropertyType: Type;
|
|
1883
|
-
|
|
1884
|
-
set Provider(value: SettingsProvider);
|
|
1842
|
+
Provider: SettingsProvider;
|
|
1885
1843
|
SerializeAs: SettingsSerializeAs;
|
|
1886
1844
|
ThrowOnErrorDeserializing: boolean;
|
|
1887
1845
|
ThrowOnErrorSerializing: boolean;
|
|
@@ -1897,26 +1855,26 @@ export const SettingsProperty: {
|
|
|
1897
1855
|
|
|
1898
1856
|
export type SettingsProperty = SettingsProperty$instance;
|
|
1899
1857
|
|
|
1900
|
-
export
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
protected OnClearComplete(): void;
|
|
1905
|
-
protected OnRemove(property: SettingsProperty): void;
|
|
1906
|
-
protected OnRemoveComplete(property: SettingsProperty): void;
|
|
1907
|
-
}
|
|
1858
|
+
export interface SettingsPropertyCollection$instance {
|
|
1859
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1860
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1861
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1908
1862
|
|
|
1909
|
-
|
|
1910
|
-
export interface SettingsPropertyCollection$instance extends SettingsPropertyCollection$protected {
|
|
1911
1863
|
readonly Count: int;
|
|
1912
1864
|
readonly IsSynchronized: boolean;
|
|
1913
|
-
readonly
|
|
1865
|
+
readonly [name: string]: SettingsProperty;
|
|
1914
1866
|
readonly SyncRoot: unknown;
|
|
1915
1867
|
Add(property: SettingsProperty): void;
|
|
1916
1868
|
Clear(): void;
|
|
1917
1869
|
Clone(): unknown;
|
|
1918
1870
|
CopyTo(array: ClrArray, index: int): void;
|
|
1919
1871
|
GetEnumerator(): IEnumerator;
|
|
1872
|
+
OnAdd(property: SettingsProperty): void;
|
|
1873
|
+
OnAddComplete(property: SettingsProperty): void;
|
|
1874
|
+
OnClear(): void;
|
|
1875
|
+
OnClearComplete(): void;
|
|
1876
|
+
OnRemove(property: SettingsProperty): void;
|
|
1877
|
+
OnRemoveComplete(property: SettingsProperty): void;
|
|
1920
1878
|
Remove(name: string): void;
|
|
1921
1879
|
SetReadOnly(): void;
|
|
1922
1880
|
}
|
|
@@ -1930,13 +1888,14 @@ export const SettingsPropertyCollection: {
|
|
|
1930
1888
|
export type SettingsPropertyCollection = SettingsPropertyCollection$instance;
|
|
1931
1889
|
|
|
1932
1890
|
export interface SettingsPropertyIsReadOnlyException$instance extends Exception {
|
|
1891
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1892
|
+
|
|
1933
1893
|
}
|
|
1934
1894
|
|
|
1935
1895
|
|
|
1936
1896
|
export const SettingsPropertyIsReadOnlyException: {
|
|
1937
1897
|
new(message: string): SettingsPropertyIsReadOnlyException;
|
|
1938
1898
|
new(message: string, innerException: Exception): SettingsPropertyIsReadOnlyException;
|
|
1939
|
-
new(info: SerializationInfo, context: StreamingContext): SettingsPropertyIsReadOnlyException;
|
|
1940
1899
|
new(): SettingsPropertyIsReadOnlyException;
|
|
1941
1900
|
};
|
|
1942
1901
|
|
|
@@ -1944,13 +1903,14 @@ export const SettingsPropertyIsReadOnlyException: {
|
|
|
1944
1903
|
export type SettingsPropertyIsReadOnlyException = SettingsPropertyIsReadOnlyException$instance;
|
|
1945
1904
|
|
|
1946
1905
|
export interface SettingsPropertyNotFoundException$instance extends Exception {
|
|
1906
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1907
|
+
|
|
1947
1908
|
}
|
|
1948
1909
|
|
|
1949
1910
|
|
|
1950
1911
|
export const SettingsPropertyNotFoundException: {
|
|
1951
1912
|
new(message: string): SettingsPropertyNotFoundException;
|
|
1952
1913
|
new(message: string, innerException: Exception): SettingsPropertyNotFoundException;
|
|
1953
|
-
new(info: SerializationInfo, context: StreamingContext): SettingsPropertyNotFoundException;
|
|
1954
1914
|
new(): SettingsPropertyNotFoundException;
|
|
1955
1915
|
};
|
|
1956
1916
|
|
|
@@ -1976,9 +1936,13 @@ export const SettingsPropertyValue: {
|
|
|
1976
1936
|
export type SettingsPropertyValue = SettingsPropertyValue$instance;
|
|
1977
1937
|
|
|
1978
1938
|
export interface SettingsPropertyValueCollection$instance {
|
|
1939
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1940
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1941
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1942
|
+
|
|
1979
1943
|
readonly Count: int;
|
|
1980
1944
|
readonly IsSynchronized: boolean;
|
|
1981
|
-
readonly
|
|
1945
|
+
readonly [name: string]: SettingsPropertyValue;
|
|
1982
1946
|
readonly SyncRoot: unknown;
|
|
1983
1947
|
Add(property: SettingsPropertyValue): void;
|
|
1984
1948
|
Clear(): void;
|
|
@@ -1998,13 +1962,14 @@ export const SettingsPropertyValueCollection: {
|
|
|
1998
1962
|
export type SettingsPropertyValueCollection = SettingsPropertyValueCollection$instance;
|
|
1999
1963
|
|
|
2000
1964
|
export interface SettingsPropertyWrongTypeException$instance extends Exception {
|
|
1965
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1966
|
+
|
|
2001
1967
|
}
|
|
2002
1968
|
|
|
2003
1969
|
|
|
2004
1970
|
export const SettingsPropertyWrongTypeException: {
|
|
2005
1971
|
new(message: string): SettingsPropertyWrongTypeException;
|
|
2006
1972
|
new(message: string, innerException: Exception): SettingsPropertyWrongTypeException;
|
|
2007
|
-
new(info: SerializationInfo, context: StreamingContext): SettingsPropertyWrongTypeException;
|
|
2008
1973
|
new(): SettingsPropertyWrongTypeException;
|
|
2009
1974
|
};
|
|
2010
1975
|
|
|
@@ -2018,8 +1983,7 @@ export interface SettingsProvider$instance extends ProviderBase {
|
|
|
2018
1983
|
}
|
|
2019
1984
|
|
|
2020
1985
|
|
|
2021
|
-
export const SettingsProvider: {
|
|
2022
|
-
new(): SettingsProvider;
|
|
1986
|
+
export const SettingsProvider: (abstract new() => SettingsProvider) & {
|
|
2023
1987
|
};
|
|
2024
1988
|
|
|
2025
1989
|
|
|
@@ -2039,7 +2003,10 @@ export const SettingsProviderAttribute: {
|
|
|
2039
2003
|
export type SettingsProviderAttribute = SettingsProviderAttribute$instance;
|
|
2040
2004
|
|
|
2041
2005
|
export interface SettingsProviderCollection$instance extends ProviderCollection {
|
|
2042
|
-
readonly
|
|
2006
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2007
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2008
|
+
|
|
2009
|
+
readonly [name: string]: ProviderBase | SettingsProvider;
|
|
2043
2010
|
Add(provider: ProviderBase): void;
|
|
2044
2011
|
}
|
|
2045
2012
|
|
|
@@ -2063,21 +2030,17 @@ export const SettingsSerializeAsAttribute: {
|
|
|
2063
2030
|
|
|
2064
2031
|
export type SettingsSerializeAsAttribute = SettingsSerializeAsAttribute$instance;
|
|
2065
2032
|
|
|
2066
|
-
export
|
|
2067
|
-
|
|
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 {
|
|
2033
|
+
export interface SettingValueElement$instance extends ConfigurationElement {
|
|
2034
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
2078
2035
|
ValueXml: XmlNode;
|
|
2036
|
+
DeserializeElement(reader: XmlReader, serializeCollectionKey: boolean): void;
|
|
2079
2037
|
Equals(settingValue: unknown): boolean;
|
|
2080
2038
|
GetHashCode(): int;
|
|
2039
|
+
IsModified(): boolean;
|
|
2040
|
+
Reset(parentElement: ConfigurationElement): void;
|
|
2041
|
+
ResetModified(): void;
|
|
2042
|
+
SerializeToXmlElement(writer: XmlWriter, elementName: string): boolean;
|
|
2043
|
+
Unmerge(sourceElement: ConfigurationElement, parentElement: ConfigurationElement, saveMode: ConfigurationSaveMode): void;
|
|
2081
2044
|
}
|
|
2082
2045
|
|
|
2083
2046
|
|
|
@@ -2089,6 +2052,8 @@ export const SettingValueElement: {
|
|
|
2089
2052
|
export type SettingValueElement = SettingValueElement$instance;
|
|
2090
2053
|
|
|
2091
2054
|
export interface SingleTagSectionHandler$instance {
|
|
2055
|
+
readonly __tsonic_iface_System_Configuration_IConfigurationSectionHandler: never;
|
|
2056
|
+
|
|
2092
2057
|
Create(parent: unknown, context: unknown, section: XmlNode): unknown;
|
|
2093
2058
|
}
|
|
2094
2059
|
|
|
@@ -2274,14 +2239,10 @@ export const TypeNameConverter: {
|
|
|
2274
2239
|
|
|
2275
2240
|
export type TypeNameConverter = TypeNameConverter$instance;
|
|
2276
2241
|
|
|
2277
|
-
export
|
|
2278
|
-
protected readonly Properties: ConfigurationPropertyCollection;
|
|
2279
|
-
}
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
export interface UriSection$instance extends UriSection$protected, ConfigurationSection {
|
|
2242
|
+
export interface UriSection$instance extends ConfigurationSection {
|
|
2283
2243
|
readonly Idn: IdnElement;
|
|
2284
2244
|
readonly IriParsing: IriParsingElement;
|
|
2245
|
+
readonly Properties: ConfigurationPropertyCollection;
|
|
2285
2246
|
readonly SchemeSettings: SchemeSettingElementCollection;
|
|
2286
2247
|
}
|
|
2287
2248
|
|