@tsonic/dotnet 10.0.4 → 10.0.9
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/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -182,6 +182,8 @@ export type RunWorkerCompletedEventHandler = (sender: unknown, e: RunWorkerCompl
|
|
|
182
182
|
|
|
183
183
|
|
|
184
184
|
export interface IBindingList$instance extends IList, ICollection, IEnumerable {
|
|
185
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingList: never;
|
|
186
|
+
|
|
185
187
|
readonly AllowNew: boolean;
|
|
186
188
|
readonly AllowEdit: boolean;
|
|
187
189
|
readonly AllowRemove: boolean;
|
|
@@ -216,6 +218,8 @@ export interface IBindingList$instance extends IList, ICollection, IEnumerable {
|
|
|
216
218
|
export type IBindingList = IBindingList$instance;
|
|
217
219
|
|
|
218
220
|
export interface IBindingListView$instance extends IBindingList, IList, ICollection, IEnumerable {
|
|
221
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingListView: never;
|
|
222
|
+
|
|
219
223
|
get Filter(): string | undefined;
|
|
220
224
|
set Filter(value: string | undefined);
|
|
221
225
|
readonly SortDescriptions: ListSortDescriptionCollection;
|
|
@@ -257,6 +261,8 @@ export interface IBindingListView$instance extends IBindingList, IList, ICollect
|
|
|
257
261
|
export type IBindingListView = IBindingListView$instance;
|
|
258
262
|
|
|
259
263
|
export interface ICancelAddNew$instance {
|
|
264
|
+
readonly __tsonic_iface_System_ComponentModel_ICancelAddNew: never;
|
|
265
|
+
|
|
260
266
|
CancelNew(itemIndex: int): void;
|
|
261
267
|
}
|
|
262
268
|
|
|
@@ -264,6 +270,8 @@ export interface ICancelAddNew$instance {
|
|
|
264
270
|
export type ICancelAddNew = ICancelAddNew$instance;
|
|
265
271
|
|
|
266
272
|
export interface IChangeTracking$instance {
|
|
273
|
+
readonly __tsonic_iface_System_ComponentModel_IChangeTracking: never;
|
|
274
|
+
|
|
267
275
|
readonly IsChanged: boolean;
|
|
268
276
|
AcceptChanges(): void;
|
|
269
277
|
}
|
|
@@ -272,6 +280,8 @@ export interface IChangeTracking$instance {
|
|
|
272
280
|
export type IChangeTracking = IChangeTracking$instance;
|
|
273
281
|
|
|
274
282
|
export interface IComNativeDescriptorHandler$instance {
|
|
283
|
+
readonly __tsonic_iface_System_ComponentModel_IComNativeDescriptorHandler: never;
|
|
284
|
+
|
|
275
285
|
GetAttributes(component: unknown): AttributeCollection;
|
|
276
286
|
GetClassName(component: unknown): string;
|
|
277
287
|
GetConverter(component: unknown): TypeConverter;
|
|
@@ -289,6 +299,8 @@ export interface IComNativeDescriptorHandler$instance {
|
|
|
289
299
|
export type IComNativeDescriptorHandler = IComNativeDescriptorHandler$instance;
|
|
290
300
|
|
|
291
301
|
export interface IComponent$instance extends IDisposable {
|
|
302
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
303
|
+
|
|
292
304
|
get Site(): ISite | undefined;
|
|
293
305
|
set Site(value: ISite | undefined);
|
|
294
306
|
Dispose(): void;
|
|
@@ -300,6 +312,8 @@ export interface IComponent$instance extends System_Internal.IDisposable$instanc
|
|
|
300
312
|
export type IComponent = IComponent$instance;
|
|
301
313
|
|
|
302
314
|
export interface IContainer$instance extends IDisposable {
|
|
315
|
+
readonly __tsonic_iface_System_ComponentModel_IContainer: never;
|
|
316
|
+
|
|
303
317
|
readonly Components: ComponentCollection;
|
|
304
318
|
Add(component: IComponent, name: string): void;
|
|
305
319
|
Add(component: IComponent): void;
|
|
@@ -312,6 +326,8 @@ export interface IContainer$instance extends System_Internal.IDisposable$instanc
|
|
|
312
326
|
export type IContainer = IContainer$instance;
|
|
313
327
|
|
|
314
328
|
export interface ICustomTypeDescriptor$instance {
|
|
329
|
+
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
330
|
+
|
|
315
331
|
readonly RequireRegisteredTypes: Nullable_1<System_Internal.Boolean>;
|
|
316
332
|
GetAttributes(): AttributeCollection;
|
|
317
333
|
GetClassName(): string | undefined;
|
|
@@ -330,6 +346,8 @@ export interface ICustomTypeDescriptor$instance {
|
|
|
330
346
|
export type ICustomTypeDescriptor = ICustomTypeDescriptor$instance;
|
|
331
347
|
|
|
332
348
|
export interface IDataErrorInfo$instance {
|
|
349
|
+
readonly __tsonic_iface_System_ComponentModel_IDataErrorInfo: never;
|
|
350
|
+
|
|
333
351
|
readonly [columnName: string]: string;
|
|
334
352
|
readonly Error: string;
|
|
335
353
|
}
|
|
@@ -338,6 +356,8 @@ export interface IDataErrorInfo$instance {
|
|
|
338
356
|
export type IDataErrorInfo = IDataErrorInfo$instance;
|
|
339
357
|
|
|
340
358
|
export interface IEditableObject$instance {
|
|
359
|
+
readonly __tsonic_iface_System_ComponentModel_IEditableObject: never;
|
|
360
|
+
|
|
341
361
|
BeginEdit(): void;
|
|
342
362
|
}
|
|
343
363
|
|
|
@@ -345,6 +365,8 @@ export interface IEditableObject$instance {
|
|
|
345
365
|
export type IEditableObject = IEditableObject$instance;
|
|
346
366
|
|
|
347
367
|
export interface IExtenderProvider$instance {
|
|
368
|
+
readonly __tsonic_iface_System_ComponentModel_IExtenderProvider: never;
|
|
369
|
+
|
|
348
370
|
CanExtend(extendee: unknown): boolean;
|
|
349
371
|
}
|
|
350
372
|
|
|
@@ -352,6 +374,8 @@ export interface IExtenderProvider$instance {
|
|
|
352
374
|
export type IExtenderProvider = IExtenderProvider$instance;
|
|
353
375
|
|
|
354
376
|
export interface IIntellisenseBuilder$instance {
|
|
377
|
+
readonly __tsonic_iface_System_ComponentModel_IIntellisenseBuilder: never;
|
|
378
|
+
|
|
355
379
|
readonly Name: string;
|
|
356
380
|
Show(language: string, value: string, newValue: string): boolean;
|
|
357
381
|
}
|
|
@@ -360,6 +384,8 @@ export interface IIntellisenseBuilder$instance {
|
|
|
360
384
|
export type IIntellisenseBuilder = IIntellisenseBuilder$instance;
|
|
361
385
|
|
|
362
386
|
export interface IListSource$instance {
|
|
387
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
388
|
+
|
|
363
389
|
readonly ContainsListCollection: boolean;
|
|
364
390
|
GetList(): IList;
|
|
365
391
|
}
|
|
@@ -368,6 +394,8 @@ export interface IListSource$instance {
|
|
|
368
394
|
export type IListSource = IListSource$instance;
|
|
369
395
|
|
|
370
396
|
export interface INestedContainer$instance extends IContainer, IDisposable {
|
|
397
|
+
readonly __tsonic_iface_System_ComponentModel_INestedContainer: never;
|
|
398
|
+
|
|
371
399
|
readonly Owner: IComponent;
|
|
372
400
|
readonly Components: ComponentCollection;
|
|
373
401
|
Add(component: IComponent, name: string): void;
|
|
@@ -379,6 +407,8 @@ export interface INestedContainer$instance extends IContainer, IDisposable {
|
|
|
379
407
|
export type INestedContainer = INestedContainer$instance;
|
|
380
408
|
|
|
381
409
|
export interface INestedSite$instance extends ISite, IServiceProvider {
|
|
410
|
+
readonly __tsonic_iface_System_ComponentModel_INestedSite: never;
|
|
411
|
+
|
|
382
412
|
readonly FullName: string | undefined;
|
|
383
413
|
readonly Component: IComponent;
|
|
384
414
|
readonly Container: IContainer | undefined;
|
|
@@ -392,6 +422,8 @@ export interface INestedSite$instance extends ISite, IServiceProvider {
|
|
|
392
422
|
export type INestedSite = INestedSite$instance;
|
|
393
423
|
|
|
394
424
|
export interface INotifyDataErrorInfo$instance {
|
|
425
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyDataErrorInfo: never;
|
|
426
|
+
|
|
395
427
|
readonly HasErrors: boolean;
|
|
396
428
|
GetErrors(propertyName: string): IEnumerable;
|
|
397
429
|
}
|
|
@@ -400,18 +432,24 @@ export interface INotifyDataErrorInfo$instance {
|
|
|
400
432
|
export type INotifyDataErrorInfo = INotifyDataErrorInfo$instance;
|
|
401
433
|
|
|
402
434
|
export interface INotifyPropertyChanged$instance {
|
|
435
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
436
|
+
|
|
403
437
|
}
|
|
404
438
|
|
|
405
439
|
|
|
406
440
|
export type INotifyPropertyChanged = INotifyPropertyChanged$instance;
|
|
407
441
|
|
|
408
442
|
export interface INotifyPropertyChanging$instance {
|
|
443
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanging: never;
|
|
444
|
+
|
|
409
445
|
}
|
|
410
446
|
|
|
411
447
|
|
|
412
448
|
export type INotifyPropertyChanging = INotifyPropertyChanging$instance;
|
|
413
449
|
|
|
414
450
|
export interface IRaiseItemChangedEvents$instance {
|
|
451
|
+
readonly __tsonic_iface_System_ComponentModel_IRaiseItemChangedEvents: never;
|
|
452
|
+
|
|
415
453
|
readonly RaisesItemChangedEvents: boolean;
|
|
416
454
|
}
|
|
417
455
|
|
|
@@ -419,6 +457,8 @@ export interface IRaiseItemChangedEvents$instance {
|
|
|
419
457
|
export type IRaiseItemChangedEvents = IRaiseItemChangedEvents$instance;
|
|
420
458
|
|
|
421
459
|
export interface IRevertibleChangeTracking$instance extends IChangeTracking {
|
|
460
|
+
readonly __tsonic_iface_System_ComponentModel_IRevertibleChangeTracking: never;
|
|
461
|
+
|
|
422
462
|
readonly IsChanged: boolean;
|
|
423
463
|
RejectChanges(): void;
|
|
424
464
|
AcceptChanges(): void;
|
|
@@ -430,6 +470,8 @@ export interface IRevertibleChangeTracking$instance extends IChangeTracking$inst
|
|
|
430
470
|
export type IRevertibleChangeTracking = IRevertibleChangeTracking$instance;
|
|
431
471
|
|
|
432
472
|
export interface ISite$instance extends IServiceProvider {
|
|
473
|
+
readonly __tsonic_iface_System_ComponentModel_ISite: never;
|
|
474
|
+
|
|
433
475
|
readonly Component: IComponent;
|
|
434
476
|
readonly Container: IContainer | undefined;
|
|
435
477
|
readonly DesignMode: boolean;
|
|
@@ -444,6 +486,8 @@ export interface ISite$instance extends System_Internal.IServiceProvider$instanc
|
|
|
444
486
|
export type ISite = ISite$instance;
|
|
445
487
|
|
|
446
488
|
export interface ISupportInitialize$instance {
|
|
489
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
490
|
+
|
|
447
491
|
BeginInit(): void;
|
|
448
492
|
}
|
|
449
493
|
|
|
@@ -451,6 +495,8 @@ export interface ISupportInitialize$instance {
|
|
|
451
495
|
export type ISupportInitialize = ISupportInitialize$instance;
|
|
452
496
|
|
|
453
497
|
export interface ISupportInitializeNotification$instance extends ISupportInitialize {
|
|
498
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitializeNotification: never;
|
|
499
|
+
|
|
454
500
|
readonly IsInitialized: boolean;
|
|
455
501
|
BeginInit(): void;
|
|
456
502
|
}
|
|
@@ -461,6 +507,8 @@ export interface ISupportInitializeNotification$instance extends ISupportInitial
|
|
|
461
507
|
export type ISupportInitializeNotification = ISupportInitializeNotification$instance;
|
|
462
508
|
|
|
463
509
|
export interface ISynchronizeInvoke$instance {
|
|
510
|
+
readonly __tsonic_iface_System_ComponentModel_ISynchronizeInvoke: never;
|
|
511
|
+
|
|
464
512
|
readonly InvokeRequired: boolean;
|
|
465
513
|
BeginInvoke(method: Function, args: unknown[]): IAsyncResult;
|
|
466
514
|
EndInvoke(result: IAsyncResult): unknown | undefined;
|
|
@@ -471,6 +519,8 @@ export interface ISynchronizeInvoke$instance {
|
|
|
471
519
|
export type ISynchronizeInvoke = ISynchronizeInvoke$instance;
|
|
472
520
|
|
|
473
521
|
export interface ITypeDescriptorContext$instance extends IServiceProvider {
|
|
522
|
+
readonly __tsonic_iface_System_ComponentModel_ITypeDescriptorContext: never;
|
|
523
|
+
|
|
474
524
|
readonly Container: IContainer | undefined;
|
|
475
525
|
readonly Instance: unknown | undefined;
|
|
476
526
|
readonly PropertyDescriptor: PropertyDescriptor | undefined;
|
|
@@ -485,6 +535,8 @@ export interface ITypeDescriptorContext$instance extends System_Internal.IServic
|
|
|
485
535
|
export type ITypeDescriptorContext = ITypeDescriptorContext$instance;
|
|
486
536
|
|
|
487
537
|
export interface ITypedList$instance {
|
|
538
|
+
readonly __tsonic_iface_System_ComponentModel_ITypedList: never;
|
|
539
|
+
|
|
488
540
|
GetItemProperties(listAccessors: PropertyDescriptor[]): PropertyDescriptorCollection;
|
|
489
541
|
GetListName(listAccessors: PropertyDescriptor[]): string;
|
|
490
542
|
}
|
|
@@ -493,6 +545,8 @@ export interface ITypedList$instance {
|
|
|
493
545
|
export type ITypedList = ITypedList$instance;
|
|
494
546
|
|
|
495
547
|
export interface AddingNewEventArgs$instance extends EventArgs {
|
|
548
|
+
readonly __tsonic_type_System_ComponentModel_AddingNewEventArgs: never;
|
|
549
|
+
|
|
496
550
|
get NewObject(): unknown | undefined;
|
|
497
551
|
set NewObject(value: unknown | undefined);
|
|
498
552
|
}
|
|
@@ -507,6 +561,8 @@ export const AddingNewEventArgs: {
|
|
|
507
561
|
export type AddingNewEventArgs = AddingNewEventArgs$instance;
|
|
508
562
|
|
|
509
563
|
export interface AmbientValueAttribute$instance extends Attribute {
|
|
564
|
+
readonly __tsonic_type_System_ComponentModel_AmbientValueAttribute: never;
|
|
565
|
+
|
|
510
566
|
readonly Value: unknown | undefined;
|
|
511
567
|
Equals(obj: unknown): boolean;
|
|
512
568
|
GetHashCode(): int;
|
|
@@ -531,6 +587,8 @@ export const AmbientValueAttribute: {
|
|
|
531
587
|
export type AmbientValueAttribute = AmbientValueAttribute$instance;
|
|
532
588
|
|
|
533
589
|
export interface ArrayConverter$instance extends CollectionConverter {
|
|
590
|
+
readonly __tsonic_type_System_ComponentModel_ArrayConverter: never;
|
|
591
|
+
|
|
534
592
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
535
593
|
ConvertTo(value: unknown, destinationType: Type): unknown | undefined;
|
|
536
594
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
@@ -549,6 +607,8 @@ export const ArrayConverter: {
|
|
|
549
607
|
export type ArrayConverter = ArrayConverter$instance;
|
|
550
608
|
|
|
551
609
|
export interface AsyncCompletedEventArgs$instance extends EventArgs {
|
|
610
|
+
readonly __tsonic_type_System_ComponentModel_AsyncCompletedEventArgs: never;
|
|
611
|
+
|
|
552
612
|
readonly Cancelled: boolean;
|
|
553
613
|
readonly Error: Exception | undefined;
|
|
554
614
|
readonly UserState: unknown | undefined;
|
|
@@ -563,6 +623,8 @@ export const AsyncCompletedEventArgs: {
|
|
|
563
623
|
export type AsyncCompletedEventArgs = AsyncCompletedEventArgs$instance;
|
|
564
624
|
|
|
565
625
|
export interface AsyncOperation$instance {
|
|
626
|
+
readonly __tsonic_type_System_ComponentModel_AsyncOperation: never;
|
|
627
|
+
|
|
566
628
|
readonly SynchronizationContext: SynchronizationContext;
|
|
567
629
|
readonly UserSuppliedState: unknown | undefined;
|
|
568
630
|
Finalize(): void;
|
|
@@ -579,6 +641,11 @@ export const AsyncOperation: {
|
|
|
579
641
|
export type AsyncOperation = AsyncOperation$instance;
|
|
580
642
|
|
|
581
643
|
export interface AttributeCollection$instance {
|
|
644
|
+
readonly __tsonic_type_System_ComponentModel_AttributeCollection: never;
|
|
645
|
+
|
|
646
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
647
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
648
|
+
|
|
582
649
|
readonly Attributes: Attribute[];
|
|
583
650
|
readonly Count: int;
|
|
584
651
|
Contains(attribute: Attribute): boolean;
|
|
@@ -608,6 +675,8 @@ export type AttributeCollection = AttributeCollection$instance & __AttributeColl
|
|
|
608
675
|
|
|
609
676
|
|
|
610
677
|
export interface AttributeProviderAttribute$instance extends Attribute {
|
|
678
|
+
readonly __tsonic_type_System_ComponentModel_AttributeProviderAttribute: never;
|
|
679
|
+
|
|
611
680
|
readonly PropertyName: string | undefined;
|
|
612
681
|
readonly TypeName: string | undefined;
|
|
613
682
|
}
|
|
@@ -623,6 +692,11 @@ export const AttributeProviderAttribute: {
|
|
|
623
692
|
export type AttributeProviderAttribute = AttributeProviderAttribute$instance;
|
|
624
693
|
|
|
625
694
|
export interface BackgroundWorker$instance extends Component$instance {
|
|
695
|
+
readonly __tsonic_type_System_ComponentModel_BackgroundWorker: never;
|
|
696
|
+
|
|
697
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
698
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
699
|
+
|
|
626
700
|
readonly CancellationPending: boolean;
|
|
627
701
|
readonly IsBusy: boolean;
|
|
628
702
|
WorkerReportsProgress: boolean;
|
|
@@ -654,6 +728,8 @@ export type BackgroundWorker = BackgroundWorker$instance & __BackgroundWorker$vi
|
|
|
654
728
|
|
|
655
729
|
|
|
656
730
|
export interface BaseNumberConverter$instance extends TypeConverter {
|
|
731
|
+
readonly __tsonic_type_System_ComponentModel_BaseNumberConverter: never;
|
|
732
|
+
|
|
657
733
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
658
734
|
CanConvertFrom(sourceType: Type): boolean;
|
|
659
735
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -672,6 +748,8 @@ export const BaseNumberConverter: {
|
|
|
672
748
|
export type BaseNumberConverter = BaseNumberConverter$instance;
|
|
673
749
|
|
|
674
750
|
export interface BindableAttribute$instance extends Attribute {
|
|
751
|
+
readonly __tsonic_type_System_ComponentModel_BindableAttribute: never;
|
|
752
|
+
|
|
675
753
|
readonly Bindable: boolean;
|
|
676
754
|
readonly Direction: BindingDirection;
|
|
677
755
|
Equals(obj: unknown): boolean;
|
|
@@ -693,7 +771,21 @@ export const BindableAttribute: {
|
|
|
693
771
|
|
|
694
772
|
export type BindableAttribute = BindableAttribute$instance;
|
|
695
773
|
|
|
696
|
-
export interface BindingList_1$instance<T> extends Collection_1<T
|
|
774
|
+
export interface BindingList_1$instance<T> extends Collection_1<T>, ICancelAddNew$instance, IRaiseItemChangedEvents$instance {
|
|
775
|
+
readonly __tsonic_type_System_ComponentModel_BindingList_1: never;
|
|
776
|
+
|
|
777
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
778
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
779
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
780
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
781
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
782
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
783
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
784
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
785
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingList: never;
|
|
786
|
+
readonly __tsonic_iface_System_ComponentModel_ICancelAddNew: never;
|
|
787
|
+
readonly __tsonic_iface_System_ComponentModel_IRaiseItemChangedEvents: never;
|
|
788
|
+
|
|
697
789
|
AllowEdit: boolean;
|
|
698
790
|
AllowNew: boolean;
|
|
699
791
|
AllowRemove: boolean;
|
|
@@ -756,12 +848,12 @@ export interface __BindingList_1$views<T> {
|
|
|
756
848
|
As_IList(): System_Collections_Internal.IList$instance;
|
|
757
849
|
}
|
|
758
850
|
|
|
759
|
-
export interface BindingList_1$instance<T> extends ICancelAddNew$instance, IRaiseItemChangedEvents$instance {}
|
|
760
|
-
|
|
761
851
|
export type BindingList_1<T> = BindingList_1$instance<T> & __BindingList_1$views<T>;
|
|
762
852
|
|
|
763
853
|
|
|
764
854
|
export interface BooleanConverter$instance extends TypeConverter {
|
|
855
|
+
readonly __tsonic_type_System_ComponentModel_BooleanConverter: never;
|
|
856
|
+
|
|
765
857
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
766
858
|
CanConvertFrom(sourceType: Type): boolean;
|
|
767
859
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -783,6 +875,8 @@ export const BooleanConverter: {
|
|
|
783
875
|
export type BooleanConverter = BooleanConverter$instance;
|
|
784
876
|
|
|
785
877
|
export interface BrowsableAttribute$instance extends Attribute {
|
|
878
|
+
readonly __tsonic_type_System_ComponentModel_BrowsableAttribute: never;
|
|
879
|
+
|
|
786
880
|
readonly Browsable: boolean;
|
|
787
881
|
Equals(obj: unknown): boolean;
|
|
788
882
|
GetHashCode(): int;
|
|
@@ -801,6 +895,8 @@ export const BrowsableAttribute: {
|
|
|
801
895
|
export type BrowsableAttribute = BrowsableAttribute$instance;
|
|
802
896
|
|
|
803
897
|
export interface ByteConverter$instance extends BaseNumberConverter {
|
|
898
|
+
readonly __tsonic_type_System_ComponentModel_ByteConverter: never;
|
|
899
|
+
|
|
804
900
|
}
|
|
805
901
|
|
|
806
902
|
|
|
@@ -812,6 +908,8 @@ export const ByteConverter: {
|
|
|
812
908
|
export type ByteConverter = ByteConverter$instance;
|
|
813
909
|
|
|
814
910
|
export interface CancelEventArgs$instance extends EventArgs {
|
|
911
|
+
readonly __tsonic_type_System_ComponentModel_CancelEventArgs: never;
|
|
912
|
+
|
|
815
913
|
Cancel: boolean;
|
|
816
914
|
}
|
|
817
915
|
|
|
@@ -825,6 +923,8 @@ export const CancelEventArgs: {
|
|
|
825
923
|
export type CancelEventArgs = CancelEventArgs$instance;
|
|
826
924
|
|
|
827
925
|
export interface CategoryAttribute$instance extends Attribute {
|
|
926
|
+
readonly __tsonic_type_System_ComponentModel_CategoryAttribute: never;
|
|
927
|
+
|
|
828
928
|
readonly Category: string;
|
|
829
929
|
Equals(obj: unknown): boolean;
|
|
830
930
|
GetHashCode(): int;
|
|
@@ -856,6 +956,8 @@ export const CategoryAttribute: {
|
|
|
856
956
|
export type CategoryAttribute = CategoryAttribute$instance;
|
|
857
957
|
|
|
858
958
|
export interface CharConverter$instance extends TypeConverter {
|
|
959
|
+
readonly __tsonic_type_System_ComponentModel_CharConverter: never;
|
|
960
|
+
|
|
859
961
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
860
962
|
CanConvertFrom(sourceType: Type): boolean;
|
|
861
963
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -873,6 +975,8 @@ export const CharConverter: {
|
|
|
873
975
|
export type CharConverter = CharConverter$instance;
|
|
874
976
|
|
|
875
977
|
export interface CollectionChangeEventArgs$instance extends EventArgs {
|
|
978
|
+
readonly __tsonic_type_System_ComponentModel_CollectionChangeEventArgs: never;
|
|
979
|
+
|
|
876
980
|
readonly Action: CollectionChangeAction;
|
|
877
981
|
readonly Element: unknown | undefined;
|
|
878
982
|
}
|
|
@@ -886,6 +990,8 @@ export const CollectionChangeEventArgs: {
|
|
|
886
990
|
export type CollectionChangeEventArgs = CollectionChangeEventArgs$instance;
|
|
887
991
|
|
|
888
992
|
export interface CollectionConverter$instance extends TypeConverter {
|
|
993
|
+
readonly __tsonic_type_System_ComponentModel_CollectionConverter: never;
|
|
994
|
+
|
|
889
995
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
890
996
|
ConvertTo(value: unknown, destinationType: Type): unknown | undefined;
|
|
891
997
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
@@ -902,6 +1008,8 @@ export const CollectionConverter: {
|
|
|
902
1008
|
export type CollectionConverter = CollectionConverter$instance;
|
|
903
1009
|
|
|
904
1010
|
export interface ComplexBindingPropertiesAttribute$instance extends Attribute {
|
|
1011
|
+
readonly __tsonic_type_System_ComponentModel_ComplexBindingPropertiesAttribute: never;
|
|
1012
|
+
|
|
905
1013
|
readonly DataMember: string | undefined;
|
|
906
1014
|
readonly DataSource: string | undefined;
|
|
907
1015
|
Equals(obj: unknown): boolean;
|
|
@@ -920,6 +1028,11 @@ export const ComplexBindingPropertiesAttribute: {
|
|
|
920
1028
|
export type ComplexBindingPropertiesAttribute = ComplexBindingPropertiesAttribute$instance;
|
|
921
1029
|
|
|
922
1030
|
export interface Component$instance extends MarshalByRefObject {
|
|
1031
|
+
readonly __tsonic_type_System_ComponentModel_Component: never;
|
|
1032
|
+
|
|
1033
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1034
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1035
|
+
|
|
923
1036
|
readonly CanRaiseEvents: boolean;
|
|
924
1037
|
readonly Container: IContainer | undefined;
|
|
925
1038
|
get Site(): ISite | undefined;
|
|
@@ -946,6 +1059,11 @@ export type Component = Component$instance & __Component$views;
|
|
|
946
1059
|
|
|
947
1060
|
|
|
948
1061
|
export interface ComponentCollection$instance extends ReadOnlyCollectionBase {
|
|
1062
|
+
readonly __tsonic_type_System_ComponentModel_ComponentCollection: never;
|
|
1063
|
+
|
|
1064
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1065
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1066
|
+
|
|
949
1067
|
CopyTo(array: ClrArray, index: int): void;
|
|
950
1068
|
get_Item(name: string): IComponent | undefined;
|
|
951
1069
|
get_Item(index: int): IComponent | undefined;
|
|
@@ -963,12 +1081,12 @@ export interface __ComponentCollection$views {
|
|
|
963
1081
|
As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
|
|
964
1082
|
}
|
|
965
1083
|
|
|
966
|
-
export interface ComponentCollection$instance extends System_Collections_Internal.ICollection$instance {}
|
|
967
|
-
|
|
968
1084
|
export type ComponentCollection = ComponentCollection$instance & __ComponentCollection$views;
|
|
969
1085
|
|
|
970
1086
|
|
|
971
1087
|
export interface ComponentConverter$instance extends ReferenceConverter {
|
|
1088
|
+
readonly __tsonic_type_System_ComponentModel_ComponentConverter: never;
|
|
1089
|
+
|
|
972
1090
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
973
1091
|
GetProperties(value: unknown): PropertyDescriptorCollection | undefined;
|
|
974
1092
|
GetProperties(context: ITypeDescriptorContext, value: unknown): PropertyDescriptorCollection | undefined;
|
|
@@ -985,6 +1103,8 @@ export const ComponentConverter: {
|
|
|
985
1103
|
export type ComponentConverter = ComponentConverter$instance;
|
|
986
1104
|
|
|
987
1105
|
export interface ComponentEditor$instance {
|
|
1106
|
+
readonly __tsonic_type_System_ComponentModel_ComponentEditor: never;
|
|
1107
|
+
|
|
988
1108
|
EditComponent(component: unknown): boolean;
|
|
989
1109
|
EditComponent(context: ITypeDescriptorContext, component: unknown): boolean;
|
|
990
1110
|
}
|
|
@@ -997,6 +1117,8 @@ export const ComponentEditor: (abstract new() => ComponentEditor) & {
|
|
|
997
1117
|
export type ComponentEditor = ComponentEditor$instance;
|
|
998
1118
|
|
|
999
1119
|
export interface ComponentResourceManager$instance extends ResourceManager {
|
|
1120
|
+
readonly __tsonic_type_System_ComponentModel_ComponentResourceManager: never;
|
|
1121
|
+
|
|
1000
1122
|
ApplyResources(value: unknown, objectName: string): void;
|
|
1001
1123
|
ApplyResources(value: unknown, objectName: string, culture: CultureInfo): void;
|
|
1002
1124
|
ApplyResourcesToRegisteredType(value: unknown, objectName: string, culture: CultureInfo): void;
|
|
@@ -1012,6 +1134,11 @@ export const ComponentResourceManager: {
|
|
|
1012
1134
|
export type ComponentResourceManager = ComponentResourceManager$instance;
|
|
1013
1135
|
|
|
1014
1136
|
export interface Container$instance {
|
|
1137
|
+
readonly __tsonic_type_System_ComponentModel_Container: never;
|
|
1138
|
+
|
|
1139
|
+
readonly __tsonic_iface_System_ComponentModel_IContainer: never;
|
|
1140
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1141
|
+
|
|
1015
1142
|
readonly Components: ComponentCollection;
|
|
1016
1143
|
Add(component: IComponent): void;
|
|
1017
1144
|
Add(component: IComponent, name: string): void;
|
|
@@ -1039,6 +1166,8 @@ export type Container = Container$instance & __Container$views;
|
|
|
1039
1166
|
|
|
1040
1167
|
|
|
1041
1168
|
export interface ContainerFilterService$instance {
|
|
1169
|
+
readonly __tsonic_type_System_ComponentModel_ContainerFilterService: never;
|
|
1170
|
+
|
|
1042
1171
|
FilterComponents(components: ComponentCollection): ComponentCollection;
|
|
1043
1172
|
}
|
|
1044
1173
|
|
|
@@ -1050,6 +1179,8 @@ export const ContainerFilterService: (abstract new() => ContainerFilterService)
|
|
|
1050
1179
|
export type ContainerFilterService = ContainerFilterService$instance;
|
|
1051
1180
|
|
|
1052
1181
|
export interface CultureInfoConverter$instance extends TypeConverter {
|
|
1182
|
+
readonly __tsonic_type_System_ComponentModel_CultureInfoConverter: never;
|
|
1183
|
+
|
|
1053
1184
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1054
1185
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1055
1186
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1075,7 +1206,11 @@ export const CultureInfoConverter: {
|
|
|
1075
1206
|
|
|
1076
1207
|
export type CultureInfoConverter = CultureInfoConverter$instance;
|
|
1077
1208
|
|
|
1078
|
-
export interface CustomTypeDescriptor$instance {
|
|
1209
|
+
export interface CustomTypeDescriptor$instance extends ICustomTypeDescriptor$instance {
|
|
1210
|
+
readonly __tsonic_type_System_ComponentModel_CustomTypeDescriptor: never;
|
|
1211
|
+
|
|
1212
|
+
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
1213
|
+
|
|
1079
1214
|
readonly RequireRegisteredTypes: Nullable_1<System_Internal.Boolean>;
|
|
1080
1215
|
GetAttributes(): AttributeCollection;
|
|
1081
1216
|
GetClassName(): string | undefined;
|
|
@@ -1103,12 +1238,12 @@ export interface __CustomTypeDescriptor$views {
|
|
|
1103
1238
|
As_ICustomTypeDescriptor(): ICustomTypeDescriptor$instance;
|
|
1104
1239
|
}
|
|
1105
1240
|
|
|
1106
|
-
export interface CustomTypeDescriptor$instance extends ICustomTypeDescriptor$instance {}
|
|
1107
|
-
|
|
1108
1241
|
export type CustomTypeDescriptor = CustomTypeDescriptor$instance & __CustomTypeDescriptor$views;
|
|
1109
1242
|
|
|
1110
1243
|
|
|
1111
1244
|
export interface DataErrorsChangedEventArgs$instance extends EventArgs {
|
|
1245
|
+
readonly __tsonic_type_System_ComponentModel_DataErrorsChangedEventArgs: never;
|
|
1246
|
+
|
|
1112
1247
|
readonly PropertyName: string | undefined;
|
|
1113
1248
|
}
|
|
1114
1249
|
|
|
@@ -1121,6 +1256,8 @@ export const DataErrorsChangedEventArgs: {
|
|
|
1121
1256
|
export type DataErrorsChangedEventArgs = DataErrorsChangedEventArgs$instance;
|
|
1122
1257
|
|
|
1123
1258
|
export interface DataObjectAttribute$instance extends Attribute {
|
|
1259
|
+
readonly __tsonic_type_System_ComponentModel_DataObjectAttribute: never;
|
|
1260
|
+
|
|
1124
1261
|
readonly IsDataObject: boolean;
|
|
1125
1262
|
Equals(obj: unknown): boolean;
|
|
1126
1263
|
GetHashCode(): int;
|
|
@@ -1140,6 +1277,8 @@ export const DataObjectAttribute: {
|
|
|
1140
1277
|
export type DataObjectAttribute = DataObjectAttribute$instance;
|
|
1141
1278
|
|
|
1142
1279
|
export interface DataObjectFieldAttribute$instance extends Attribute {
|
|
1280
|
+
readonly __tsonic_type_System_ComponentModel_DataObjectFieldAttribute: never;
|
|
1281
|
+
|
|
1143
1282
|
readonly IsIdentity: boolean;
|
|
1144
1283
|
readonly IsNullable: boolean;
|
|
1145
1284
|
readonly Length: int;
|
|
@@ -1160,6 +1299,8 @@ export const DataObjectFieldAttribute: {
|
|
|
1160
1299
|
export type DataObjectFieldAttribute = DataObjectFieldAttribute$instance;
|
|
1161
1300
|
|
|
1162
1301
|
export interface DataObjectMethodAttribute$instance extends Attribute {
|
|
1302
|
+
readonly __tsonic_type_System_ComponentModel_DataObjectMethodAttribute: never;
|
|
1303
|
+
|
|
1163
1304
|
readonly IsDefault: boolean;
|
|
1164
1305
|
readonly MethodType: DataObjectMethodType;
|
|
1165
1306
|
Equals(obj: unknown): boolean;
|
|
@@ -1177,6 +1318,8 @@ export const DataObjectMethodAttribute: {
|
|
|
1177
1318
|
export type DataObjectMethodAttribute = DataObjectMethodAttribute$instance;
|
|
1178
1319
|
|
|
1179
1320
|
export interface DateOnlyConverter$instance extends TypeConverter {
|
|
1321
|
+
readonly __tsonic_type_System_ComponentModel_DateOnlyConverter: never;
|
|
1322
|
+
|
|
1180
1323
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1181
1324
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1182
1325
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1196,6 +1339,8 @@ export const DateOnlyConverter: {
|
|
|
1196
1339
|
export type DateOnlyConverter = DateOnlyConverter$instance;
|
|
1197
1340
|
|
|
1198
1341
|
export interface DateTimeConverter$instance extends TypeConverter {
|
|
1342
|
+
readonly __tsonic_type_System_ComponentModel_DateTimeConverter: never;
|
|
1343
|
+
|
|
1199
1344
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1200
1345
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1201
1346
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1215,6 +1360,8 @@ export const DateTimeConverter: {
|
|
|
1215
1360
|
export type DateTimeConverter = DateTimeConverter$instance;
|
|
1216
1361
|
|
|
1217
1362
|
export interface DateTimeOffsetConverter$instance extends TypeConverter {
|
|
1363
|
+
readonly __tsonic_type_System_ComponentModel_DateTimeOffsetConverter: never;
|
|
1364
|
+
|
|
1218
1365
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1219
1366
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1220
1367
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1234,6 +1381,8 @@ export const DateTimeOffsetConverter: {
|
|
|
1234
1381
|
export type DateTimeOffsetConverter = DateTimeOffsetConverter$instance;
|
|
1235
1382
|
|
|
1236
1383
|
export interface DecimalConverter$instance extends BaseNumberConverter {
|
|
1384
|
+
readonly __tsonic_type_System_ComponentModel_DecimalConverter: never;
|
|
1385
|
+
|
|
1237
1386
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
1238
1387
|
CanConvertTo(destinationType: Type): boolean;
|
|
1239
1388
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
@@ -1249,6 +1398,8 @@ export const DecimalConverter: {
|
|
|
1249
1398
|
export type DecimalConverter = DecimalConverter$instance;
|
|
1250
1399
|
|
|
1251
1400
|
export interface DefaultBindingPropertyAttribute$instance extends Attribute {
|
|
1401
|
+
readonly __tsonic_type_System_ComponentModel_DefaultBindingPropertyAttribute: never;
|
|
1402
|
+
|
|
1252
1403
|
readonly Name: string | undefined;
|
|
1253
1404
|
Equals(obj: unknown): boolean;
|
|
1254
1405
|
GetHashCode(): int;
|
|
@@ -1265,6 +1416,8 @@ export const DefaultBindingPropertyAttribute: {
|
|
|
1265
1416
|
export type DefaultBindingPropertyAttribute = DefaultBindingPropertyAttribute$instance;
|
|
1266
1417
|
|
|
1267
1418
|
export interface DefaultEventAttribute$instance extends Attribute {
|
|
1419
|
+
readonly __tsonic_type_System_ComponentModel_DefaultEventAttribute: never;
|
|
1420
|
+
|
|
1268
1421
|
readonly Name: string | undefined;
|
|
1269
1422
|
Equals(obj: unknown): boolean;
|
|
1270
1423
|
GetHashCode(): int;
|
|
@@ -1280,6 +1433,8 @@ export const DefaultEventAttribute: {
|
|
|
1280
1433
|
export type DefaultEventAttribute = DefaultEventAttribute$instance;
|
|
1281
1434
|
|
|
1282
1435
|
export interface DefaultPropertyAttribute$instance extends Attribute {
|
|
1436
|
+
readonly __tsonic_type_System_ComponentModel_DefaultPropertyAttribute: never;
|
|
1437
|
+
|
|
1283
1438
|
readonly Name: string | undefined;
|
|
1284
1439
|
Equals(obj: unknown): boolean;
|
|
1285
1440
|
GetHashCode(): int;
|
|
@@ -1295,6 +1450,8 @@ export const DefaultPropertyAttribute: {
|
|
|
1295
1450
|
export type DefaultPropertyAttribute = DefaultPropertyAttribute$instance;
|
|
1296
1451
|
|
|
1297
1452
|
export interface DefaultValueAttribute$instance extends Attribute {
|
|
1453
|
+
readonly __tsonic_type_System_ComponentModel_DefaultValueAttribute: never;
|
|
1454
|
+
|
|
1298
1455
|
readonly Value: unknown | undefined;
|
|
1299
1456
|
Equals(obj: unknown): boolean;
|
|
1300
1457
|
GetHashCode(): int;
|
|
@@ -1323,6 +1480,8 @@ export const DefaultValueAttribute: {
|
|
|
1323
1480
|
export type DefaultValueAttribute = DefaultValueAttribute$instance;
|
|
1324
1481
|
|
|
1325
1482
|
export interface DescriptionAttribute$instance extends Attribute {
|
|
1483
|
+
readonly __tsonic_type_System_ComponentModel_DescriptionAttribute: never;
|
|
1484
|
+
|
|
1326
1485
|
readonly Description: string;
|
|
1327
1486
|
Equals(obj: unknown): boolean;
|
|
1328
1487
|
GetHashCode(): int;
|
|
@@ -1340,6 +1499,8 @@ export const DescriptionAttribute: {
|
|
|
1340
1499
|
export type DescriptionAttribute = DescriptionAttribute$instance;
|
|
1341
1500
|
|
|
1342
1501
|
export interface DesignerAttribute$instance extends Attribute {
|
|
1502
|
+
readonly __tsonic_type_System_ComponentModel_DesignerAttribute: never;
|
|
1503
|
+
|
|
1343
1504
|
readonly DesignerBaseTypeName: string;
|
|
1344
1505
|
readonly DesignerTypeName: string;
|
|
1345
1506
|
readonly TypeId: unknown;
|
|
@@ -1360,6 +1521,8 @@ export const DesignerAttribute: {
|
|
|
1360
1521
|
export type DesignerAttribute = DesignerAttribute$instance;
|
|
1361
1522
|
|
|
1362
1523
|
export interface DesignerCategoryAttribute$instance extends Attribute {
|
|
1524
|
+
readonly __tsonic_type_System_ComponentModel_DesignerCategoryAttribute: never;
|
|
1525
|
+
|
|
1363
1526
|
readonly Category: string;
|
|
1364
1527
|
readonly TypeId: unknown;
|
|
1365
1528
|
Equals(obj: unknown): boolean;
|
|
@@ -1381,6 +1544,8 @@ export const DesignerCategoryAttribute: {
|
|
|
1381
1544
|
export type DesignerCategoryAttribute = DesignerCategoryAttribute$instance;
|
|
1382
1545
|
|
|
1383
1546
|
export interface DesignerSerializationVisibilityAttribute$instance extends Attribute {
|
|
1547
|
+
readonly __tsonic_type_System_ComponentModel_DesignerSerializationVisibilityAttribute: never;
|
|
1548
|
+
|
|
1384
1549
|
readonly Visibility: DesignerSerializationVisibility;
|
|
1385
1550
|
Equals(obj: unknown): boolean;
|
|
1386
1551
|
GetHashCode(): int;
|
|
@@ -1400,6 +1565,8 @@ export const DesignerSerializationVisibilityAttribute: {
|
|
|
1400
1565
|
export type DesignerSerializationVisibilityAttribute = DesignerSerializationVisibilityAttribute$instance;
|
|
1401
1566
|
|
|
1402
1567
|
export interface DesignOnlyAttribute$instance extends Attribute {
|
|
1568
|
+
readonly __tsonic_type_System_ComponentModel_DesignOnlyAttribute: never;
|
|
1569
|
+
|
|
1403
1570
|
readonly IsDesignOnly: boolean;
|
|
1404
1571
|
Equals(obj: unknown): boolean;
|
|
1405
1572
|
GetHashCode(): int;
|
|
@@ -1418,6 +1585,8 @@ export const DesignOnlyAttribute: {
|
|
|
1418
1585
|
export type DesignOnlyAttribute = DesignOnlyAttribute$instance;
|
|
1419
1586
|
|
|
1420
1587
|
export interface DesignTimeVisibleAttribute$instance extends Attribute {
|
|
1588
|
+
readonly __tsonic_type_System_ComponentModel_DesignTimeVisibleAttribute: never;
|
|
1589
|
+
|
|
1421
1590
|
readonly Visible: boolean;
|
|
1422
1591
|
Equals(obj: unknown): boolean;
|
|
1423
1592
|
GetHashCode(): int;
|
|
@@ -1437,6 +1606,8 @@ export const DesignTimeVisibleAttribute: {
|
|
|
1437
1606
|
export type DesignTimeVisibleAttribute = DesignTimeVisibleAttribute$instance;
|
|
1438
1607
|
|
|
1439
1608
|
export interface DisplayNameAttribute$instance extends Attribute {
|
|
1609
|
+
readonly __tsonic_type_System_ComponentModel_DisplayNameAttribute: never;
|
|
1610
|
+
|
|
1440
1611
|
readonly DisplayName: string;
|
|
1441
1612
|
Equals(obj: unknown): boolean;
|
|
1442
1613
|
GetHashCode(): int;
|
|
@@ -1454,6 +1625,8 @@ export const DisplayNameAttribute: {
|
|
|
1454
1625
|
export type DisplayNameAttribute = DisplayNameAttribute$instance;
|
|
1455
1626
|
|
|
1456
1627
|
export interface DoubleConverter$instance extends BaseNumberConverter {
|
|
1628
|
+
readonly __tsonic_type_System_ComponentModel_DoubleConverter: never;
|
|
1629
|
+
|
|
1457
1630
|
}
|
|
1458
1631
|
|
|
1459
1632
|
|
|
@@ -1465,6 +1638,8 @@ export const DoubleConverter: {
|
|
|
1465
1638
|
export type DoubleConverter = DoubleConverter$instance;
|
|
1466
1639
|
|
|
1467
1640
|
export interface DoWorkEventArgs$instance extends CancelEventArgs {
|
|
1641
|
+
readonly __tsonic_type_System_ComponentModel_DoWorkEventArgs: never;
|
|
1642
|
+
|
|
1468
1643
|
readonly Argument: unknown | undefined;
|
|
1469
1644
|
get Result(): unknown | undefined;
|
|
1470
1645
|
set Result(value: unknown | undefined);
|
|
@@ -1479,6 +1654,8 @@ export const DoWorkEventArgs: {
|
|
|
1479
1654
|
export type DoWorkEventArgs = DoWorkEventArgs$instance;
|
|
1480
1655
|
|
|
1481
1656
|
export interface EditorAttribute$instance extends Attribute {
|
|
1657
|
+
readonly __tsonic_type_System_ComponentModel_EditorAttribute: never;
|
|
1658
|
+
|
|
1482
1659
|
readonly EditorBaseTypeName: string | undefined;
|
|
1483
1660
|
readonly EditorTypeName: string;
|
|
1484
1661
|
readonly TypeId: unknown;
|
|
@@ -1498,6 +1675,8 @@ export const EditorAttribute: {
|
|
|
1498
1675
|
export type EditorAttribute = EditorAttribute$instance;
|
|
1499
1676
|
|
|
1500
1677
|
export interface EditorBrowsableAttribute$instance extends Attribute {
|
|
1678
|
+
readonly __tsonic_type_System_ComponentModel_EditorBrowsableAttribute: never;
|
|
1679
|
+
|
|
1501
1680
|
readonly State: EditorBrowsableState;
|
|
1502
1681
|
Equals(obj: unknown): boolean;
|
|
1503
1682
|
GetHashCode(): int;
|
|
@@ -1513,6 +1692,8 @@ export const EditorBrowsableAttribute: {
|
|
|
1513
1692
|
export type EditorBrowsableAttribute = EditorBrowsableAttribute$instance;
|
|
1514
1693
|
|
|
1515
1694
|
export interface EnumConverter$instance extends TypeConverter {
|
|
1695
|
+
readonly __tsonic_type_System_ComponentModel_EnumConverter: never;
|
|
1696
|
+
|
|
1516
1697
|
readonly Comparer: IComparer;
|
|
1517
1698
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1518
1699
|
CanConvertFrom(sourceType: Type): boolean;
|
|
@@ -1541,6 +1722,8 @@ export const EnumConverter: {
|
|
|
1541
1722
|
export type EnumConverter = EnumConverter$instance;
|
|
1542
1723
|
|
|
1543
1724
|
export interface EventDescriptor$instance extends MemberDescriptor {
|
|
1725
|
+
readonly __tsonic_type_System_ComponentModel_EventDescriptor: never;
|
|
1726
|
+
|
|
1544
1727
|
readonly ComponentType: Type;
|
|
1545
1728
|
readonly EventType: Type;
|
|
1546
1729
|
readonly IsMulticast: boolean;
|
|
@@ -1556,6 +1739,12 @@ export const EventDescriptor: (abstract new(name: string, attrs: Attribute[]) =>
|
|
|
1556
1739
|
export type EventDescriptor = EventDescriptor$instance;
|
|
1557
1740
|
|
|
1558
1741
|
export interface EventDescriptorCollection$instance {
|
|
1742
|
+
readonly __tsonic_type_System_ComponentModel_EventDescriptorCollection: never;
|
|
1743
|
+
|
|
1744
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1745
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1746
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1747
|
+
|
|
1559
1748
|
Count: int;
|
|
1560
1749
|
Add(value: EventDescriptor): int;
|
|
1561
1750
|
Clear(): void;
|
|
@@ -1591,7 +1780,11 @@ export interface __EventDescriptorCollection$views {
|
|
|
1591
1780
|
export type EventDescriptorCollection = EventDescriptorCollection$instance & __EventDescriptorCollection$views;
|
|
1592
1781
|
|
|
1593
1782
|
|
|
1594
|
-
export interface EventHandlerList$instance {
|
|
1783
|
+
export interface EventHandlerList$instance extends System_Internal.IDisposable$instance {
|
|
1784
|
+
readonly __tsonic_type_System_ComponentModel_EventHandlerList: never;
|
|
1785
|
+
|
|
1786
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1787
|
+
|
|
1595
1788
|
get Item(): Function | undefined;
|
|
1596
1789
|
set Item(value: Function | undefined);
|
|
1597
1790
|
AddHandler(key: unknown, value: Function): void;
|
|
@@ -1610,12 +1803,12 @@ export interface __EventHandlerList$views {
|
|
|
1610
1803
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1611
1804
|
}
|
|
1612
1805
|
|
|
1613
|
-
export interface EventHandlerList$instance extends System_Internal.IDisposable$instance {}
|
|
1614
|
-
|
|
1615
1806
|
export type EventHandlerList = EventHandlerList$instance & __EventHandlerList$views;
|
|
1616
1807
|
|
|
1617
1808
|
|
|
1618
1809
|
export interface ExpandableObjectConverter$instance extends TypeConverter {
|
|
1810
|
+
readonly __tsonic_type_System_ComponentModel_ExpandableObjectConverter: never;
|
|
1811
|
+
|
|
1619
1812
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
1620
1813
|
GetProperties(value: unknown): PropertyDescriptorCollection | undefined;
|
|
1621
1814
|
GetProperties(context: ITypeDescriptorContext, value: unknown): PropertyDescriptorCollection | undefined;
|
|
@@ -1632,6 +1825,8 @@ export const ExpandableObjectConverter: {
|
|
|
1632
1825
|
export type ExpandableObjectConverter = ExpandableObjectConverter$instance;
|
|
1633
1826
|
|
|
1634
1827
|
export interface ExtenderProvidedPropertyAttribute$instance extends Attribute {
|
|
1828
|
+
readonly __tsonic_type_System_ComponentModel_ExtenderProvidedPropertyAttribute: never;
|
|
1829
|
+
|
|
1635
1830
|
get ExtenderProperty(): PropertyDescriptor | undefined;
|
|
1636
1831
|
set ExtenderProperty(value: PropertyDescriptor | undefined);
|
|
1637
1832
|
get Provider(): IExtenderProvider | undefined;
|
|
@@ -1652,6 +1847,8 @@ export const ExtenderProvidedPropertyAttribute: {
|
|
|
1652
1847
|
export type ExtenderProvidedPropertyAttribute = ExtenderProvidedPropertyAttribute$instance;
|
|
1653
1848
|
|
|
1654
1849
|
export interface GuidConverter$instance extends TypeConverter {
|
|
1850
|
+
readonly __tsonic_type_System_ComponentModel_GuidConverter: never;
|
|
1851
|
+
|
|
1655
1852
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1656
1853
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1657
1854
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1671,6 +1868,8 @@ export const GuidConverter: {
|
|
|
1671
1868
|
export type GuidConverter = GuidConverter$instance;
|
|
1672
1869
|
|
|
1673
1870
|
export interface HalfConverter$instance extends BaseNumberConverter {
|
|
1871
|
+
readonly __tsonic_type_System_ComponentModel_HalfConverter: never;
|
|
1872
|
+
|
|
1674
1873
|
}
|
|
1675
1874
|
|
|
1676
1875
|
|
|
@@ -1682,6 +1881,8 @@ export const HalfConverter: {
|
|
|
1682
1881
|
export type HalfConverter = HalfConverter$instance;
|
|
1683
1882
|
|
|
1684
1883
|
export interface HandledEventArgs$instance extends EventArgs {
|
|
1884
|
+
readonly __tsonic_type_System_ComponentModel_HandledEventArgs: never;
|
|
1885
|
+
|
|
1685
1886
|
Handled: boolean;
|
|
1686
1887
|
}
|
|
1687
1888
|
|
|
@@ -1695,6 +1896,8 @@ export const HandledEventArgs: {
|
|
|
1695
1896
|
export type HandledEventArgs = HandledEventArgs$instance;
|
|
1696
1897
|
|
|
1697
1898
|
export interface ImmutableObjectAttribute$instance extends Attribute {
|
|
1899
|
+
readonly __tsonic_type_System_ComponentModel_ImmutableObjectAttribute: never;
|
|
1900
|
+
|
|
1698
1901
|
readonly Immutable: boolean;
|
|
1699
1902
|
Equals(obj: unknown): boolean;
|
|
1700
1903
|
GetHashCode(): int;
|
|
@@ -1713,6 +1916,8 @@ export const ImmutableObjectAttribute: {
|
|
|
1713
1916
|
export type ImmutableObjectAttribute = ImmutableObjectAttribute$instance;
|
|
1714
1917
|
|
|
1715
1918
|
export interface InheritanceAttribute$instance extends Attribute {
|
|
1919
|
+
readonly __tsonic_type_System_ComponentModel_InheritanceAttribute: never;
|
|
1920
|
+
|
|
1716
1921
|
readonly InheritanceLevel: InheritanceLevel;
|
|
1717
1922
|
Equals(value: unknown): boolean;
|
|
1718
1923
|
GetHashCode(): int;
|
|
@@ -1734,6 +1939,8 @@ export const InheritanceAttribute: {
|
|
|
1734
1939
|
export type InheritanceAttribute = InheritanceAttribute$instance;
|
|
1735
1940
|
|
|
1736
1941
|
export interface InitializationEventAttribute$instance extends Attribute {
|
|
1942
|
+
readonly __tsonic_type_System_ComponentModel_InitializationEventAttribute: never;
|
|
1943
|
+
|
|
1737
1944
|
readonly EventName: string;
|
|
1738
1945
|
}
|
|
1739
1946
|
|
|
@@ -1746,6 +1953,8 @@ export const InitializationEventAttribute: {
|
|
|
1746
1953
|
export type InitializationEventAttribute = InitializationEventAttribute$instance;
|
|
1747
1954
|
|
|
1748
1955
|
export interface InstallerTypeAttribute$instance extends Attribute {
|
|
1956
|
+
readonly __tsonic_type_System_ComponentModel_InstallerTypeAttribute: never;
|
|
1957
|
+
|
|
1749
1958
|
readonly InstallerType: Type | undefined;
|
|
1750
1959
|
Equals(obj: unknown): boolean;
|
|
1751
1960
|
GetHashCode(): int;
|
|
@@ -1761,6 +1970,8 @@ export const InstallerTypeAttribute: {
|
|
|
1761
1970
|
export type InstallerTypeAttribute = InstallerTypeAttribute$instance;
|
|
1762
1971
|
|
|
1763
1972
|
export interface InstanceCreationEditor$instance {
|
|
1973
|
+
readonly __tsonic_type_System_ComponentModel_InstanceCreationEditor: never;
|
|
1974
|
+
|
|
1764
1975
|
readonly Text: string;
|
|
1765
1976
|
CreateInstance(context: ITypeDescriptorContext, instanceType: Type): unknown | undefined;
|
|
1766
1977
|
}
|
|
@@ -1773,6 +1984,8 @@ export const InstanceCreationEditor: (abstract new() => InstanceCreationEditor)
|
|
|
1773
1984
|
export type InstanceCreationEditor = InstanceCreationEditor$instance;
|
|
1774
1985
|
|
|
1775
1986
|
export interface Int128Converter$instance extends BaseNumberConverter {
|
|
1987
|
+
readonly __tsonic_type_System_ComponentModel_Int128Converter: never;
|
|
1988
|
+
|
|
1776
1989
|
}
|
|
1777
1990
|
|
|
1778
1991
|
|
|
@@ -1784,6 +1997,8 @@ export const Int128Converter: {
|
|
|
1784
1997
|
export type Int128Converter = Int128Converter$instance;
|
|
1785
1998
|
|
|
1786
1999
|
export interface Int16Converter$instance extends BaseNumberConverter {
|
|
2000
|
+
readonly __tsonic_type_System_ComponentModel_Int16Converter: never;
|
|
2001
|
+
|
|
1787
2002
|
}
|
|
1788
2003
|
|
|
1789
2004
|
|
|
@@ -1795,6 +2010,8 @@ export const Int16Converter: {
|
|
|
1795
2010
|
export type Int16Converter = Int16Converter$instance;
|
|
1796
2011
|
|
|
1797
2012
|
export interface Int32Converter$instance extends BaseNumberConverter {
|
|
2013
|
+
readonly __tsonic_type_System_ComponentModel_Int32Converter: never;
|
|
2014
|
+
|
|
1798
2015
|
}
|
|
1799
2016
|
|
|
1800
2017
|
|
|
@@ -1806,6 +2023,8 @@ export const Int32Converter: {
|
|
|
1806
2023
|
export type Int32Converter = Int32Converter$instance;
|
|
1807
2024
|
|
|
1808
2025
|
export interface Int64Converter$instance extends BaseNumberConverter {
|
|
2026
|
+
readonly __tsonic_type_System_ComponentModel_Int64Converter: never;
|
|
2027
|
+
|
|
1809
2028
|
}
|
|
1810
2029
|
|
|
1811
2030
|
|
|
@@ -1817,6 +2036,10 @@ export const Int64Converter: {
|
|
|
1817
2036
|
export type Int64Converter = Int64Converter$instance;
|
|
1818
2037
|
|
|
1819
2038
|
export interface InvalidAsynchronousStateException$instance extends ArgumentException {
|
|
2039
|
+
readonly __tsonic_type_System_ComponentModel_InvalidAsynchronousStateException: never;
|
|
2040
|
+
|
|
2041
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2042
|
+
|
|
1820
2043
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1821
2044
|
}
|
|
1822
2045
|
|
|
@@ -1836,6 +2059,10 @@ export type InvalidAsynchronousStateException = InvalidAsynchronousStateExceptio
|
|
|
1836
2059
|
|
|
1837
2060
|
|
|
1838
2061
|
export interface InvalidEnumArgumentException$instance extends ArgumentException {
|
|
2062
|
+
readonly __tsonic_type_System_ComponentModel_InvalidEnumArgumentException: never;
|
|
2063
|
+
|
|
2064
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2065
|
+
|
|
1839
2066
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1840
2067
|
}
|
|
1841
2068
|
|
|
@@ -1855,7 +2082,11 @@ export interface __InvalidEnumArgumentException$views {
|
|
|
1855
2082
|
export type InvalidEnumArgumentException = InvalidEnumArgumentException$instance & __InvalidEnumArgumentException$views;
|
|
1856
2083
|
|
|
1857
2084
|
|
|
1858
|
-
export interface License$instance {
|
|
2085
|
+
export interface License$instance extends System_Internal.IDisposable$instance {
|
|
2086
|
+
readonly __tsonic_type_System_ComponentModel_License: never;
|
|
2087
|
+
|
|
2088
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2089
|
+
|
|
1859
2090
|
readonly LicenseKey: string;
|
|
1860
2091
|
Dispose(): void;
|
|
1861
2092
|
}
|
|
@@ -1869,12 +2100,14 @@ export interface __License$views {
|
|
|
1869
2100
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1870
2101
|
}
|
|
1871
2102
|
|
|
1872
|
-
export interface License$instance extends System_Internal.IDisposable$instance {}
|
|
1873
|
-
|
|
1874
2103
|
export type License = License$instance & __License$views;
|
|
1875
2104
|
|
|
1876
2105
|
|
|
1877
|
-
export interface LicenseContext$instance {
|
|
2106
|
+
export interface LicenseContext$instance extends System_Internal.IServiceProvider$instance {
|
|
2107
|
+
readonly __tsonic_type_System_ComponentModel_LicenseContext: never;
|
|
2108
|
+
|
|
2109
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
2110
|
+
|
|
1878
2111
|
readonly UsageMode: LicenseUsageMode;
|
|
1879
2112
|
GetSavedLicenseKey(type: Type, resourceAssembly: Assembly): string | undefined;
|
|
1880
2113
|
GetService(type: Type): unknown | undefined;
|
|
@@ -1891,12 +2124,14 @@ export interface __LicenseContext$views {
|
|
|
1891
2124
|
As_IServiceProvider(): System_Internal.IServiceProvider$instance;
|
|
1892
2125
|
}
|
|
1893
2126
|
|
|
1894
|
-
export interface LicenseContext$instance extends System_Internal.IServiceProvider$instance {}
|
|
1895
|
-
|
|
1896
2127
|
export type LicenseContext = LicenseContext$instance & __LicenseContext$views;
|
|
1897
2128
|
|
|
1898
2129
|
|
|
1899
2130
|
export interface LicenseException$instance extends SystemException {
|
|
2131
|
+
readonly __tsonic_type_System_ComponentModel_LicenseException: never;
|
|
2132
|
+
|
|
2133
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2134
|
+
|
|
1900
2135
|
readonly LicensedType: Type | undefined;
|
|
1901
2136
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1902
2137
|
}
|
|
@@ -1918,6 +2153,8 @@ export type LicenseException = LicenseException$instance & __LicenseException$vi
|
|
|
1918
2153
|
|
|
1919
2154
|
|
|
1920
2155
|
export interface LicenseManager$instance {
|
|
2156
|
+
readonly __tsonic_type_System_ComponentModel_LicenseManager: never;
|
|
2157
|
+
|
|
1921
2158
|
}
|
|
1922
2159
|
|
|
1923
2160
|
|
|
@@ -1939,6 +2176,8 @@ export const LicenseManager: {
|
|
|
1939
2176
|
export type LicenseManager = LicenseManager$instance;
|
|
1940
2177
|
|
|
1941
2178
|
export interface LicenseProvider$instance {
|
|
2179
|
+
readonly __tsonic_type_System_ComponentModel_LicenseProvider: never;
|
|
2180
|
+
|
|
1942
2181
|
GetLicense(context: LicenseContext, type: Type, instance: unknown, allowExceptions: boolean): License | undefined;
|
|
1943
2182
|
}
|
|
1944
2183
|
|
|
@@ -1950,6 +2189,8 @@ export const LicenseProvider: (abstract new() => LicenseProvider) & {
|
|
|
1950
2189
|
export type LicenseProvider = LicenseProvider$instance;
|
|
1951
2190
|
|
|
1952
2191
|
export interface LicenseProviderAttribute$instance extends Attribute {
|
|
2192
|
+
readonly __tsonic_type_System_ComponentModel_LicenseProviderAttribute: never;
|
|
2193
|
+
|
|
1953
2194
|
readonly LicenseProvider: Type | undefined;
|
|
1954
2195
|
readonly TypeId: unknown;
|
|
1955
2196
|
Equals(value: unknown): boolean;
|
|
@@ -1968,6 +2209,8 @@ export const LicenseProviderAttribute: {
|
|
|
1968
2209
|
export type LicenseProviderAttribute = LicenseProviderAttribute$instance;
|
|
1969
2210
|
|
|
1970
2211
|
export interface LicFileLicenseProvider$instance extends LicenseProvider {
|
|
2212
|
+
readonly __tsonic_type_System_ComponentModel_LicFileLicenseProvider: never;
|
|
2213
|
+
|
|
1971
2214
|
GetKey(type: Type): string;
|
|
1972
2215
|
GetLicense(context: LicenseContext, type: Type, instance: unknown, allowExceptions: boolean): License | undefined;
|
|
1973
2216
|
IsKeyValid(key: string, type: Type): boolean;
|
|
@@ -1982,6 +2225,8 @@ export const LicFileLicenseProvider: {
|
|
|
1982
2225
|
export type LicFileLicenseProvider = LicFileLicenseProvider$instance;
|
|
1983
2226
|
|
|
1984
2227
|
export interface ListBindableAttribute$instance extends Attribute {
|
|
2228
|
+
readonly __tsonic_type_System_ComponentModel_ListBindableAttribute: never;
|
|
2229
|
+
|
|
1985
2230
|
readonly ListBindable: boolean;
|
|
1986
2231
|
Equals(obj: unknown): boolean;
|
|
1987
2232
|
GetHashCode(): int;
|
|
@@ -2001,6 +2246,8 @@ export const ListBindableAttribute: {
|
|
|
2001
2246
|
export type ListBindableAttribute = ListBindableAttribute$instance;
|
|
2002
2247
|
|
|
2003
2248
|
export interface ListChangedEventArgs$instance extends EventArgs {
|
|
2249
|
+
readonly __tsonic_type_System_ComponentModel_ListChangedEventArgs: never;
|
|
2250
|
+
|
|
2004
2251
|
readonly ListChangedType: ListChangedType;
|
|
2005
2252
|
readonly NewIndex: int;
|
|
2006
2253
|
readonly OldIndex: int;
|
|
@@ -2019,6 +2266,8 @@ export const ListChangedEventArgs: {
|
|
|
2019
2266
|
export type ListChangedEventArgs = ListChangedEventArgs$instance;
|
|
2020
2267
|
|
|
2021
2268
|
export interface ListSortDescription$instance {
|
|
2269
|
+
readonly __tsonic_type_System_ComponentModel_ListSortDescription: never;
|
|
2270
|
+
|
|
2022
2271
|
get PropertyDescriptor(): PropertyDescriptor | undefined;
|
|
2023
2272
|
set PropertyDescriptor(value: PropertyDescriptor | undefined);
|
|
2024
2273
|
SortDirection: ListSortDirection;
|
|
@@ -2033,6 +2282,12 @@ export const ListSortDescription: {
|
|
|
2033
2282
|
export type ListSortDescription = ListSortDescription$instance;
|
|
2034
2283
|
|
|
2035
2284
|
export interface ListSortDescriptionCollection$instance {
|
|
2285
|
+
readonly __tsonic_type_System_ComponentModel_ListSortDescriptionCollection: never;
|
|
2286
|
+
|
|
2287
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2288
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2289
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
2290
|
+
|
|
2036
2291
|
readonly Count: int;
|
|
2037
2292
|
[index: number]: ListSortDescription;
|
|
2038
2293
|
Contains(value: unknown): boolean;
|
|
@@ -2057,6 +2312,8 @@ export type ListSortDescriptionCollection = ListSortDescriptionCollection$instan
|
|
|
2057
2312
|
|
|
2058
2313
|
|
|
2059
2314
|
export interface LocalizableAttribute$instance extends Attribute {
|
|
2315
|
+
readonly __tsonic_type_System_ComponentModel_LocalizableAttribute: never;
|
|
2316
|
+
|
|
2060
2317
|
readonly IsLocalizable: boolean;
|
|
2061
2318
|
Equals(obj: unknown): boolean;
|
|
2062
2319
|
GetHashCode(): int;
|
|
@@ -2075,6 +2332,8 @@ export const LocalizableAttribute: {
|
|
|
2075
2332
|
export type LocalizableAttribute = LocalizableAttribute$instance;
|
|
2076
2333
|
|
|
2077
2334
|
export interface LookupBindingPropertiesAttribute$instance extends Attribute {
|
|
2335
|
+
readonly __tsonic_type_System_ComponentModel_LookupBindingPropertiesAttribute: never;
|
|
2336
|
+
|
|
2078
2337
|
readonly DataSource: string | undefined;
|
|
2079
2338
|
readonly DisplayMember: string | undefined;
|
|
2080
2339
|
readonly LookupMember: string | undefined;
|
|
@@ -2093,7 +2352,13 @@ export const LookupBindingPropertiesAttribute: {
|
|
|
2093
2352
|
|
|
2094
2353
|
export type LookupBindingPropertiesAttribute = LookupBindingPropertiesAttribute$instance;
|
|
2095
2354
|
|
|
2096
|
-
export interface MarshalByValueComponent$instance {
|
|
2355
|
+
export interface MarshalByValueComponent$instance extends System_Internal.IServiceProvider$instance {
|
|
2356
|
+
readonly __tsonic_type_System_ComponentModel_MarshalByValueComponent: never;
|
|
2357
|
+
|
|
2358
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
2359
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2360
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
2361
|
+
|
|
2097
2362
|
readonly Container: IContainer | undefined;
|
|
2098
2363
|
readonly DesignMode: boolean;
|
|
2099
2364
|
get Site(): ISite | undefined;
|
|
@@ -2117,12 +2382,14 @@ export interface __MarshalByValueComponent$views {
|
|
|
2117
2382
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2118
2383
|
}
|
|
2119
2384
|
|
|
2120
|
-
export interface MarshalByValueComponent$instance extends System_Internal.IServiceProvider$instance {}
|
|
2121
|
-
|
|
2122
2385
|
export type MarshalByValueComponent = MarshalByValueComponent$instance & __MarshalByValueComponent$views;
|
|
2123
2386
|
|
|
2124
2387
|
|
|
2125
|
-
export interface MaskedTextProvider$instance {
|
|
2388
|
+
export interface MaskedTextProvider$instance extends System_Internal.ICloneable$instance {
|
|
2389
|
+
readonly __tsonic_type_System_ComponentModel_MaskedTextProvider: never;
|
|
2390
|
+
|
|
2391
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
2392
|
+
|
|
2126
2393
|
readonly AllowPromptAsInput: boolean;
|
|
2127
2394
|
readonly AsciiOnly: boolean;
|
|
2128
2395
|
AssignedEditPositionCount: int;
|
|
@@ -2214,12 +2481,12 @@ export interface __MaskedTextProvider$views {
|
|
|
2214
2481
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
2215
2482
|
}
|
|
2216
2483
|
|
|
2217
|
-
export interface MaskedTextProvider$instance extends System_Internal.ICloneable$instance {}
|
|
2218
|
-
|
|
2219
2484
|
export type MaskedTextProvider = MaskedTextProvider$instance & __MaskedTextProvider$views;
|
|
2220
2485
|
|
|
2221
2486
|
|
|
2222
2487
|
export interface MemberDescriptor$instance {
|
|
2488
|
+
readonly __tsonic_type_System_ComponentModel_MemberDescriptor: never;
|
|
2489
|
+
|
|
2223
2490
|
get AttributeArray(): Attribute[] | undefined;
|
|
2224
2491
|
set AttributeArray(value: Attribute[] | undefined);
|
|
2225
2492
|
readonly Attributes: AttributeCollection;
|
|
@@ -2249,6 +2516,8 @@ export const MemberDescriptor: (abstract new(name: string) => MemberDescriptor)
|
|
|
2249
2516
|
export type MemberDescriptor = MemberDescriptor$instance;
|
|
2250
2517
|
|
|
2251
2518
|
export interface MergablePropertyAttribute$instance extends Attribute {
|
|
2519
|
+
readonly __tsonic_type_System_ComponentModel_MergablePropertyAttribute: never;
|
|
2520
|
+
|
|
2252
2521
|
readonly AllowMerge: boolean;
|
|
2253
2522
|
Equals(obj: unknown): boolean;
|
|
2254
2523
|
GetHashCode(): int;
|
|
@@ -2267,6 +2536,8 @@ export const MergablePropertyAttribute: {
|
|
|
2267
2536
|
export type MergablePropertyAttribute = MergablePropertyAttribute$instance;
|
|
2268
2537
|
|
|
2269
2538
|
export interface MultilineStringConverter$instance extends TypeConverter {
|
|
2539
|
+
readonly __tsonic_type_System_ComponentModel_MultilineStringConverter: never;
|
|
2540
|
+
|
|
2270
2541
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
2271
2542
|
ConvertTo(value: unknown, destinationType: Type): unknown | undefined;
|
|
2272
2543
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection | undefined;
|
|
@@ -2285,6 +2556,12 @@ export const MultilineStringConverter: {
|
|
|
2285
2556
|
export type MultilineStringConverter = MultilineStringConverter$instance;
|
|
2286
2557
|
|
|
2287
2558
|
export interface NestedContainer$instance extends Container$instance {
|
|
2559
|
+
readonly __tsonic_type_System_ComponentModel_NestedContainer: never;
|
|
2560
|
+
|
|
2561
|
+
readonly __tsonic_iface_System_ComponentModel_IContainer: never;
|
|
2562
|
+
readonly __tsonic_iface_System_ComponentModel_INestedContainer: never;
|
|
2563
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2564
|
+
|
|
2288
2565
|
readonly Owner: IComponent;
|
|
2289
2566
|
readonly OwnerName: string | undefined;
|
|
2290
2567
|
Add(component: IComponent): void;
|
|
@@ -2311,6 +2588,8 @@ export type NestedContainer = NestedContainer$instance & __NestedContainer$views
|
|
|
2311
2588
|
|
|
2312
2589
|
|
|
2313
2590
|
export interface NotifyParentPropertyAttribute$instance extends Attribute {
|
|
2591
|
+
readonly __tsonic_type_System_ComponentModel_NotifyParentPropertyAttribute: never;
|
|
2592
|
+
|
|
2314
2593
|
readonly NotifyParent: boolean;
|
|
2315
2594
|
Equals(obj: unknown): boolean;
|
|
2316
2595
|
GetHashCode(): int;
|
|
@@ -2329,6 +2608,8 @@ export const NotifyParentPropertyAttribute: {
|
|
|
2329
2608
|
export type NotifyParentPropertyAttribute = NotifyParentPropertyAttribute$instance;
|
|
2330
2609
|
|
|
2331
2610
|
export interface NullableConverter$instance extends TypeConverter {
|
|
2611
|
+
readonly __tsonic_type_System_ComponentModel_NullableConverter: never;
|
|
2612
|
+
|
|
2332
2613
|
readonly NullableType: Type;
|
|
2333
2614
|
readonly UnderlyingType: Type;
|
|
2334
2615
|
readonly UnderlyingTypeConverter: TypeConverter;
|
|
@@ -2368,6 +2649,8 @@ export const NullableConverter: {
|
|
|
2368
2649
|
export type NullableConverter = NullableConverter$instance;
|
|
2369
2650
|
|
|
2370
2651
|
export interface ParenthesizePropertyNameAttribute$instance extends Attribute {
|
|
2652
|
+
readonly __tsonic_type_System_ComponentModel_ParenthesizePropertyNameAttribute: never;
|
|
2653
|
+
|
|
2371
2654
|
readonly NeedParenthesis: boolean;
|
|
2372
2655
|
Equals(obj: unknown): boolean;
|
|
2373
2656
|
GetHashCode(): int;
|
|
@@ -2385,6 +2668,8 @@ export const ParenthesizePropertyNameAttribute: {
|
|
|
2385
2668
|
export type ParenthesizePropertyNameAttribute = ParenthesizePropertyNameAttribute$instance;
|
|
2386
2669
|
|
|
2387
2670
|
export interface PasswordPropertyTextAttribute$instance extends Attribute {
|
|
2671
|
+
readonly __tsonic_type_System_ComponentModel_PasswordPropertyTextAttribute: never;
|
|
2672
|
+
|
|
2388
2673
|
readonly Password: boolean;
|
|
2389
2674
|
Equals(o: unknown): boolean;
|
|
2390
2675
|
GetHashCode(): int;
|
|
@@ -2404,6 +2689,8 @@ export const PasswordPropertyTextAttribute: {
|
|
|
2404
2689
|
export type PasswordPropertyTextAttribute = PasswordPropertyTextAttribute$instance;
|
|
2405
2690
|
|
|
2406
2691
|
export interface ProgressChangedEventArgs$instance extends EventArgs {
|
|
2692
|
+
readonly __tsonic_type_System_ComponentModel_ProgressChangedEventArgs: never;
|
|
2693
|
+
|
|
2407
2694
|
readonly ProgressPercentage: int;
|
|
2408
2695
|
readonly UserState: unknown | undefined;
|
|
2409
2696
|
}
|
|
@@ -2417,6 +2704,8 @@ export const ProgressChangedEventArgs: {
|
|
|
2417
2704
|
export type ProgressChangedEventArgs = ProgressChangedEventArgs$instance;
|
|
2418
2705
|
|
|
2419
2706
|
export interface PropertyChangedEventArgs$instance extends EventArgs {
|
|
2707
|
+
readonly __tsonic_type_System_ComponentModel_PropertyChangedEventArgs: never;
|
|
2708
|
+
|
|
2420
2709
|
readonly PropertyName: string | undefined;
|
|
2421
2710
|
}
|
|
2422
2711
|
|
|
@@ -2429,6 +2718,8 @@ export const PropertyChangedEventArgs: {
|
|
|
2429
2718
|
export type PropertyChangedEventArgs = PropertyChangedEventArgs$instance;
|
|
2430
2719
|
|
|
2431
2720
|
export interface PropertyChangingEventArgs$instance extends EventArgs {
|
|
2721
|
+
readonly __tsonic_type_System_ComponentModel_PropertyChangingEventArgs: never;
|
|
2722
|
+
|
|
2432
2723
|
readonly PropertyName: string | undefined;
|
|
2433
2724
|
}
|
|
2434
2725
|
|
|
@@ -2441,6 +2732,8 @@ export const PropertyChangingEventArgs: {
|
|
|
2441
2732
|
export type PropertyChangingEventArgs = PropertyChangingEventArgs$instance;
|
|
2442
2733
|
|
|
2443
2734
|
export interface PropertyDescriptor$instance extends MemberDescriptor {
|
|
2735
|
+
readonly __tsonic_type_System_ComponentModel_PropertyDescriptor: never;
|
|
2736
|
+
|
|
2444
2737
|
readonly ComponentType: Type;
|
|
2445
2738
|
readonly Converter: TypeConverter;
|
|
2446
2739
|
readonly ConverterFromRegisteredType: TypeConverter;
|
|
@@ -2476,6 +2769,13 @@ export const PropertyDescriptor: (abstract new(name: string, attrs: Attribute[])
|
|
|
2476
2769
|
export type PropertyDescriptor = PropertyDescriptor$instance;
|
|
2477
2770
|
|
|
2478
2771
|
export interface PropertyDescriptorCollection$instance {
|
|
2772
|
+
readonly __tsonic_type_System_ComponentModel_PropertyDescriptorCollection: never;
|
|
2773
|
+
|
|
2774
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2775
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
2776
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2777
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
2778
|
+
|
|
2479
2779
|
Count: int;
|
|
2480
2780
|
Add(value: PropertyDescriptor): int;
|
|
2481
2781
|
Clear(): void;
|
|
@@ -2514,6 +2814,8 @@ export type PropertyDescriptorCollection = PropertyDescriptorCollection$instance
|
|
|
2514
2814
|
|
|
2515
2815
|
|
|
2516
2816
|
export interface PropertyTabAttribute$instance extends Attribute {
|
|
2817
|
+
readonly __tsonic_type_System_ComponentModel_PropertyTabAttribute: never;
|
|
2818
|
+
|
|
2517
2819
|
readonly TabClasses: Type[];
|
|
2518
2820
|
TabScopes: PropertyTabScope[];
|
|
2519
2821
|
Equals(other: unknown): boolean;
|
|
@@ -2534,6 +2836,8 @@ export const PropertyTabAttribute: {
|
|
|
2534
2836
|
export type PropertyTabAttribute = PropertyTabAttribute$instance;
|
|
2535
2837
|
|
|
2536
2838
|
export interface ProvidePropertyAttribute$instance extends Attribute {
|
|
2839
|
+
readonly __tsonic_type_System_ComponentModel_ProvidePropertyAttribute: never;
|
|
2840
|
+
|
|
2537
2841
|
readonly PropertyName: string;
|
|
2538
2842
|
readonly ReceiverTypeName: string;
|
|
2539
2843
|
readonly TypeId: unknown;
|
|
@@ -2551,6 +2855,8 @@ export const ProvidePropertyAttribute: {
|
|
|
2551
2855
|
export type ProvidePropertyAttribute = ProvidePropertyAttribute$instance;
|
|
2552
2856
|
|
|
2553
2857
|
export interface ReadOnlyAttribute$instance extends Attribute {
|
|
2858
|
+
readonly __tsonic_type_System_ComponentModel_ReadOnlyAttribute: never;
|
|
2859
|
+
|
|
2554
2860
|
readonly IsReadOnly: boolean;
|
|
2555
2861
|
Equals(value: unknown): boolean;
|
|
2556
2862
|
GetHashCode(): int;
|
|
@@ -2569,6 +2875,8 @@ export const ReadOnlyAttribute: {
|
|
|
2569
2875
|
export type ReadOnlyAttribute = ReadOnlyAttribute$instance;
|
|
2570
2876
|
|
|
2571
2877
|
export interface RecommendedAsConfigurableAttribute$instance extends Attribute {
|
|
2878
|
+
readonly __tsonic_type_System_ComponentModel_RecommendedAsConfigurableAttribute: never;
|
|
2879
|
+
|
|
2572
2880
|
readonly RecommendedAsConfigurable: boolean;
|
|
2573
2881
|
Equals(obj: unknown): boolean;
|
|
2574
2882
|
GetHashCode(): int;
|
|
@@ -2587,6 +2895,8 @@ export const RecommendedAsConfigurableAttribute: {
|
|
|
2587
2895
|
export type RecommendedAsConfigurableAttribute = RecommendedAsConfigurableAttribute$instance;
|
|
2588
2896
|
|
|
2589
2897
|
export interface ReferenceConverter$instance extends TypeConverter {
|
|
2898
|
+
readonly __tsonic_type_System_ComponentModel_ReferenceConverter: never;
|
|
2899
|
+
|
|
2590
2900
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2591
2901
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2592
2902
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -2611,6 +2921,8 @@ export const ReferenceConverter: {
|
|
|
2611
2921
|
export type ReferenceConverter = ReferenceConverter$instance;
|
|
2612
2922
|
|
|
2613
2923
|
export interface RefreshEventArgs$instance extends EventArgs {
|
|
2924
|
+
readonly __tsonic_type_System_ComponentModel_RefreshEventArgs: never;
|
|
2925
|
+
|
|
2614
2926
|
readonly ComponentChanged: unknown | undefined;
|
|
2615
2927
|
readonly TypeChanged: Type | undefined;
|
|
2616
2928
|
}
|
|
@@ -2625,6 +2937,8 @@ export const RefreshEventArgs: {
|
|
|
2625
2937
|
export type RefreshEventArgs = RefreshEventArgs$instance;
|
|
2626
2938
|
|
|
2627
2939
|
export interface RefreshPropertiesAttribute$instance extends Attribute {
|
|
2940
|
+
readonly __tsonic_type_System_ComponentModel_RefreshPropertiesAttribute: never;
|
|
2941
|
+
|
|
2628
2942
|
readonly RefreshProperties: RefreshProperties;
|
|
2629
2943
|
Equals(obj: unknown): boolean;
|
|
2630
2944
|
GetHashCode(): int;
|
|
@@ -2643,6 +2957,8 @@ export const RefreshPropertiesAttribute: {
|
|
|
2643
2957
|
export type RefreshPropertiesAttribute = RefreshPropertiesAttribute$instance;
|
|
2644
2958
|
|
|
2645
2959
|
export interface RunInstallerAttribute$instance extends Attribute {
|
|
2960
|
+
readonly __tsonic_type_System_ComponentModel_RunInstallerAttribute: never;
|
|
2961
|
+
|
|
2646
2962
|
readonly RunInstaller: boolean;
|
|
2647
2963
|
Equals(obj: unknown): boolean;
|
|
2648
2964
|
GetHashCode(): int;
|
|
@@ -2661,6 +2977,8 @@ export const RunInstallerAttribute: {
|
|
|
2661
2977
|
export type RunInstallerAttribute = RunInstallerAttribute$instance;
|
|
2662
2978
|
|
|
2663
2979
|
export interface RunWorkerCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
2980
|
+
readonly __tsonic_type_System_ComponentModel_RunWorkerCompletedEventArgs: never;
|
|
2981
|
+
|
|
2664
2982
|
readonly Result: unknown | undefined;
|
|
2665
2983
|
readonly UserState: unknown | undefined;
|
|
2666
2984
|
}
|
|
@@ -2674,6 +2992,8 @@ export const RunWorkerCompletedEventArgs: {
|
|
|
2674
2992
|
export type RunWorkerCompletedEventArgs = RunWorkerCompletedEventArgs$instance;
|
|
2675
2993
|
|
|
2676
2994
|
export interface SByteConverter$instance extends BaseNumberConverter {
|
|
2995
|
+
readonly __tsonic_type_System_ComponentModel_SByteConverter: never;
|
|
2996
|
+
|
|
2677
2997
|
}
|
|
2678
2998
|
|
|
2679
2999
|
|
|
@@ -2685,6 +3005,8 @@ export const SByteConverter: {
|
|
|
2685
3005
|
export type SByteConverter = SByteConverter$instance;
|
|
2686
3006
|
|
|
2687
3007
|
export interface SettingsBindableAttribute$instance extends Attribute {
|
|
3008
|
+
readonly __tsonic_type_System_ComponentModel_SettingsBindableAttribute: never;
|
|
3009
|
+
|
|
2688
3010
|
readonly Bindable: boolean;
|
|
2689
3011
|
Equals(obj: unknown): boolean;
|
|
2690
3012
|
GetHashCode(): int;
|
|
@@ -2701,6 +3023,8 @@ export const SettingsBindableAttribute: {
|
|
|
2701
3023
|
export type SettingsBindableAttribute = SettingsBindableAttribute$instance;
|
|
2702
3024
|
|
|
2703
3025
|
export interface SingleConverter$instance extends BaseNumberConverter {
|
|
3026
|
+
readonly __tsonic_type_System_ComponentModel_SingleConverter: never;
|
|
3027
|
+
|
|
2704
3028
|
}
|
|
2705
3029
|
|
|
2706
3030
|
|
|
@@ -2712,6 +3036,8 @@ export const SingleConverter: {
|
|
|
2712
3036
|
export type SingleConverter = SingleConverter$instance;
|
|
2713
3037
|
|
|
2714
3038
|
export interface StringConverter$instance extends TypeConverter {
|
|
3039
|
+
readonly __tsonic_type_System_ComponentModel_StringConverter: never;
|
|
3040
|
+
|
|
2715
3041
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2716
3042
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2717
3043
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -2727,6 +3053,8 @@ export const StringConverter: {
|
|
|
2727
3053
|
export type StringConverter = StringConverter$instance;
|
|
2728
3054
|
|
|
2729
3055
|
export interface TimeOnlyConverter$instance extends TypeConverter {
|
|
3056
|
+
readonly __tsonic_type_System_ComponentModel_TimeOnlyConverter: never;
|
|
3057
|
+
|
|
2730
3058
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2731
3059
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2732
3060
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -2746,6 +3074,8 @@ export const TimeOnlyConverter: {
|
|
|
2746
3074
|
export type TimeOnlyConverter = TimeOnlyConverter$instance;
|
|
2747
3075
|
|
|
2748
3076
|
export interface TimeSpanConverter$instance extends TypeConverter {
|
|
3077
|
+
readonly __tsonic_type_System_ComponentModel_TimeSpanConverter: never;
|
|
3078
|
+
|
|
2749
3079
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2750
3080
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2751
3081
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -2765,6 +3095,8 @@ export const TimeSpanConverter: {
|
|
|
2765
3095
|
export type TimeSpanConverter = TimeSpanConverter$instance;
|
|
2766
3096
|
|
|
2767
3097
|
export interface ToolboxItemAttribute$instance extends Attribute {
|
|
3098
|
+
readonly __tsonic_type_System_ComponentModel_ToolboxItemAttribute: never;
|
|
3099
|
+
|
|
2768
3100
|
readonly ToolboxItemType: Type | undefined;
|
|
2769
3101
|
readonly ToolboxItemTypeName: string;
|
|
2770
3102
|
Equals(obj: unknown): boolean;
|
|
@@ -2785,6 +3117,8 @@ export const ToolboxItemAttribute: {
|
|
|
2785
3117
|
export type ToolboxItemAttribute = ToolboxItemAttribute$instance;
|
|
2786
3118
|
|
|
2787
3119
|
export interface ToolboxItemFilterAttribute$instance extends Attribute {
|
|
3120
|
+
readonly __tsonic_type_System_ComponentModel_ToolboxItemFilterAttribute: never;
|
|
3121
|
+
|
|
2788
3122
|
readonly FilterString: string;
|
|
2789
3123
|
readonly FilterType: ToolboxItemFilterType;
|
|
2790
3124
|
readonly TypeId: unknown;
|
|
@@ -2804,6 +3138,8 @@ export const ToolboxItemFilterAttribute: {
|
|
|
2804
3138
|
export type ToolboxItemFilterAttribute = ToolboxItemFilterAttribute$instance;
|
|
2805
3139
|
|
|
2806
3140
|
export interface TypeConverter$instance {
|
|
3141
|
+
readonly __tsonic_type_System_ComponentModel_TypeConverter: never;
|
|
3142
|
+
|
|
2807
3143
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2808
3144
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2809
3145
|
CanConvertTo(destinationType: Type): boolean;
|
|
@@ -2850,6 +3186,11 @@ export const TypeConverter: {
|
|
|
2850
3186
|
export type TypeConverter = TypeConverter$instance;
|
|
2851
3187
|
|
|
2852
3188
|
export interface TypeConverter_StandardValuesCollection$instance {
|
|
3189
|
+
readonly __tsonic_type_System_ComponentModel_TypeConverter_StandardValuesCollection: never;
|
|
3190
|
+
|
|
3191
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
3192
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3193
|
+
|
|
2853
3194
|
readonly Count: int;
|
|
2854
3195
|
readonly [index: number]: unknown | undefined;
|
|
2855
3196
|
CopyTo(array: ClrArray, index: int): void;
|
|
@@ -2871,6 +3212,8 @@ export type TypeConverter_StandardValuesCollection = TypeConverter_StandardValue
|
|
|
2871
3212
|
|
|
2872
3213
|
|
|
2873
3214
|
export interface TypeConverterAttribute$instance extends Attribute {
|
|
3215
|
+
readonly __tsonic_type_System_ComponentModel_TypeConverterAttribute: never;
|
|
3216
|
+
|
|
2874
3217
|
readonly ConverterTypeName: string;
|
|
2875
3218
|
Equals(obj: unknown): boolean;
|
|
2876
3219
|
GetHashCode(): int;
|
|
@@ -2888,6 +3231,8 @@ export const TypeConverterAttribute: {
|
|
|
2888
3231
|
export type TypeConverterAttribute = TypeConverterAttribute$instance;
|
|
2889
3232
|
|
|
2890
3233
|
export interface TypeDescriptionProvider$instance {
|
|
3234
|
+
readonly __tsonic_type_System_ComponentModel_TypeDescriptionProvider: never;
|
|
3235
|
+
|
|
2891
3236
|
readonly RequireRegisteredTypes: Nullable_1<System_Internal.Boolean>;
|
|
2892
3237
|
CreateInstance(provider: IServiceProvider, objectType: Type, argTypes: Type[], args: unknown[]): unknown | undefined;
|
|
2893
3238
|
GetCache(instance: unknown): IDictionary | undefined;
|
|
@@ -2918,6 +3263,8 @@ export const TypeDescriptionProvider: (abstract new() => TypeDescriptionProvider
|
|
|
2918
3263
|
export type TypeDescriptionProvider = TypeDescriptionProvider$instance;
|
|
2919
3264
|
|
|
2920
3265
|
export interface TypeDescriptionProviderAttribute$instance extends Attribute {
|
|
3266
|
+
readonly __tsonic_type_System_ComponentModel_TypeDescriptionProviderAttribute: never;
|
|
3267
|
+
|
|
2921
3268
|
readonly TypeName: string;
|
|
2922
3269
|
}
|
|
2923
3270
|
|
|
@@ -2931,6 +3278,8 @@ export const TypeDescriptionProviderAttribute: {
|
|
|
2931
3278
|
export type TypeDescriptionProviderAttribute = TypeDescriptionProviderAttribute$instance;
|
|
2932
3279
|
|
|
2933
3280
|
export interface TypeDescriptor$instance {
|
|
3281
|
+
readonly __tsonic_type_System_ComponentModel_TypeDescriptor: never;
|
|
3282
|
+
|
|
2934
3283
|
}
|
|
2935
3284
|
|
|
2936
3285
|
|
|
@@ -3014,6 +3363,8 @@ export const TypeDescriptor: {
|
|
|
3014
3363
|
export type TypeDescriptor = TypeDescriptor$instance;
|
|
3015
3364
|
|
|
3016
3365
|
export interface TypeListConverter$instance extends TypeConverter {
|
|
3366
|
+
readonly __tsonic_type_System_ComponentModel_TypeListConverter: never;
|
|
3367
|
+
|
|
3017
3368
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
3018
3369
|
CanConvertFrom(sourceType: Type): boolean;
|
|
3019
3370
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -3038,6 +3389,8 @@ export const TypeListConverter: (abstract new(types: Type[]) => TypeListConverte
|
|
|
3038
3389
|
export type TypeListConverter = TypeListConverter$instance;
|
|
3039
3390
|
|
|
3040
3391
|
export interface UInt128Converter$instance extends BaseNumberConverter {
|
|
3392
|
+
readonly __tsonic_type_System_ComponentModel_UInt128Converter: never;
|
|
3393
|
+
|
|
3041
3394
|
}
|
|
3042
3395
|
|
|
3043
3396
|
|
|
@@ -3049,6 +3402,8 @@ export const UInt128Converter: {
|
|
|
3049
3402
|
export type UInt128Converter = UInt128Converter$instance;
|
|
3050
3403
|
|
|
3051
3404
|
export interface UInt16Converter$instance extends BaseNumberConverter {
|
|
3405
|
+
readonly __tsonic_type_System_ComponentModel_UInt16Converter: never;
|
|
3406
|
+
|
|
3052
3407
|
}
|
|
3053
3408
|
|
|
3054
3409
|
|
|
@@ -3060,6 +3415,8 @@ export const UInt16Converter: {
|
|
|
3060
3415
|
export type UInt16Converter = UInt16Converter$instance;
|
|
3061
3416
|
|
|
3062
3417
|
export interface UInt32Converter$instance extends BaseNumberConverter {
|
|
3418
|
+
readonly __tsonic_type_System_ComponentModel_UInt32Converter: never;
|
|
3419
|
+
|
|
3063
3420
|
}
|
|
3064
3421
|
|
|
3065
3422
|
|
|
@@ -3071,6 +3428,8 @@ export const UInt32Converter: {
|
|
|
3071
3428
|
export type UInt32Converter = UInt32Converter$instance;
|
|
3072
3429
|
|
|
3073
3430
|
export interface UInt64Converter$instance extends BaseNumberConverter {
|
|
3431
|
+
readonly __tsonic_type_System_ComponentModel_UInt64Converter: never;
|
|
3432
|
+
|
|
3074
3433
|
}
|
|
3075
3434
|
|
|
3076
3435
|
|
|
@@ -3082,6 +3441,8 @@ export const UInt64Converter: {
|
|
|
3082
3441
|
export type UInt64Converter = UInt64Converter$instance;
|
|
3083
3442
|
|
|
3084
3443
|
export interface VersionConverter$instance extends TypeConverter {
|
|
3444
|
+
readonly __tsonic_type_System_ComponentModel_VersionConverter: never;
|
|
3445
|
+
|
|
3085
3446
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
3086
3447
|
CanConvertFrom(sourceType: Type): boolean;
|
|
3087
3448
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -3103,6 +3464,10 @@ export const VersionConverter: {
|
|
|
3103
3464
|
export type VersionConverter = VersionConverter$instance;
|
|
3104
3465
|
|
|
3105
3466
|
export interface WarningException$instance extends SystemException {
|
|
3467
|
+
readonly __tsonic_type_System_ComponentModel_WarningException: never;
|
|
3468
|
+
|
|
3469
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3470
|
+
|
|
3106
3471
|
readonly HelpTopic: string | undefined;
|
|
3107
3472
|
readonly HelpUrl: string | undefined;
|
|
3108
3473
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -3126,6 +3491,10 @@ export type WarningException = WarningException$instance & __WarningException$vi
|
|
|
3126
3491
|
|
|
3127
3492
|
|
|
3128
3493
|
export interface Win32Exception$instance extends ExternalException {
|
|
3494
|
+
readonly __tsonic_type_System_ComponentModel_Win32Exception: never;
|
|
3495
|
+
|
|
3496
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3497
|
+
|
|
3129
3498
|
readonly NativeErrorCode: int;
|
|
3130
3499
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
3131
3500
|
ToString(): string;
|