@tsonic/dotnet 10.0.5 → 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 +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -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 +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -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 +12 -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 +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -47,6 +47,8 @@ export interface IValidatableObject$instance {
|
|
|
47
47
|
export type IValidatableObject = IValidatableObject$instance;
|
|
48
48
|
|
|
49
49
|
export interface AllowedValuesAttribute$instance extends ValidationAttribute {
|
|
50
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_AllowedValuesAttribute: never;
|
|
51
|
+
|
|
50
52
|
readonly Values: (unknown | undefined)[];
|
|
51
53
|
IsValid(value: unknown): boolean;
|
|
52
54
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
@@ -61,6 +63,8 @@ export const AllowedValuesAttribute: {
|
|
|
61
63
|
export type AllowedValuesAttribute = AllowedValuesAttribute$instance;
|
|
62
64
|
|
|
63
65
|
export interface AssociatedMetadataTypeTypeDescriptionProvider$instance extends TypeDescriptionProvider {
|
|
66
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_AssociatedMetadataTypeTypeDescriptionProvider: never;
|
|
67
|
+
|
|
64
68
|
GetTypeDescriptor(objectType: Type, instance: unknown): ICustomTypeDescriptor;
|
|
65
69
|
GetTypeDescriptor(objectType: Type): ICustomTypeDescriptor | undefined;
|
|
66
70
|
GetTypeDescriptor(instance: unknown): ICustomTypeDescriptor | undefined;
|
|
@@ -76,6 +80,8 @@ export const AssociatedMetadataTypeTypeDescriptionProvider: {
|
|
|
76
80
|
export type AssociatedMetadataTypeTypeDescriptionProvider = AssociatedMetadataTypeTypeDescriptionProvider$instance;
|
|
77
81
|
|
|
78
82
|
export interface AssociationAttribute$instance extends Attribute {
|
|
83
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_AssociationAttribute: never;
|
|
84
|
+
|
|
79
85
|
IsForeignKey: boolean;
|
|
80
86
|
readonly Name: string;
|
|
81
87
|
readonly OtherKey: string;
|
|
@@ -93,6 +99,8 @@ export const AssociationAttribute: {
|
|
|
93
99
|
export type AssociationAttribute = AssociationAttribute$instance;
|
|
94
100
|
|
|
95
101
|
export interface Base64StringAttribute$instance extends ValidationAttribute {
|
|
102
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Base64StringAttribute: never;
|
|
103
|
+
|
|
96
104
|
IsValid(value: unknown): boolean;
|
|
97
105
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
98
106
|
}
|
|
@@ -106,6 +114,8 @@ export const Base64StringAttribute: {
|
|
|
106
114
|
export type Base64StringAttribute = Base64StringAttribute$instance;
|
|
107
115
|
|
|
108
116
|
export interface CompareAttribute$instance extends ValidationAttribute {
|
|
117
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_CompareAttribute: never;
|
|
118
|
+
|
|
109
119
|
readonly OtherProperty: string;
|
|
110
120
|
get OtherPropertyDisplayName(): string | undefined;
|
|
111
121
|
set OtherPropertyDisplayName(value: string | undefined);
|
|
@@ -124,6 +134,8 @@ export const CompareAttribute: {
|
|
|
124
134
|
export type CompareAttribute = CompareAttribute$instance;
|
|
125
135
|
|
|
126
136
|
export interface ConcurrencyCheckAttribute$instance extends Attribute {
|
|
137
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_ConcurrencyCheckAttribute: never;
|
|
138
|
+
|
|
127
139
|
}
|
|
128
140
|
|
|
129
141
|
|
|
@@ -135,6 +147,8 @@ export const ConcurrencyCheckAttribute: {
|
|
|
135
147
|
export type ConcurrencyCheckAttribute = ConcurrencyCheckAttribute$instance;
|
|
136
148
|
|
|
137
149
|
export interface CreditCardAttribute$instance extends DataTypeAttribute {
|
|
150
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_CreditCardAttribute: never;
|
|
151
|
+
|
|
138
152
|
IsValid(value: unknown): boolean;
|
|
139
153
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
140
154
|
}
|
|
@@ -148,6 +162,8 @@ export const CreditCardAttribute: {
|
|
|
148
162
|
export type CreditCardAttribute = CreditCardAttribute$instance;
|
|
149
163
|
|
|
150
164
|
export interface CustomValidationAttribute$instance extends ValidationAttribute {
|
|
165
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_CustomValidationAttribute: never;
|
|
166
|
+
|
|
151
167
|
readonly Method: string;
|
|
152
168
|
readonly RequiresValidationContext: boolean;
|
|
153
169
|
readonly TypeId: unknown;
|
|
@@ -166,6 +182,8 @@ export const CustomValidationAttribute: {
|
|
|
166
182
|
export type CustomValidationAttribute = CustomValidationAttribute$instance;
|
|
167
183
|
|
|
168
184
|
export interface DataTypeAttribute$instance extends ValidationAttribute {
|
|
185
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_DataTypeAttribute: never;
|
|
186
|
+
|
|
169
187
|
readonly CustomDataType: string | undefined;
|
|
170
188
|
readonly DataType: DataType;
|
|
171
189
|
get DisplayFormat(): DisplayFormatAttribute | undefined;
|
|
@@ -185,6 +203,8 @@ export const DataTypeAttribute: {
|
|
|
185
203
|
export type DataTypeAttribute = DataTypeAttribute$instance;
|
|
186
204
|
|
|
187
205
|
export interface DeniedValuesAttribute$instance extends ValidationAttribute {
|
|
206
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_DeniedValuesAttribute: never;
|
|
207
|
+
|
|
188
208
|
readonly Values: (unknown | undefined)[];
|
|
189
209
|
IsValid(value: unknown): boolean;
|
|
190
210
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
@@ -199,6 +219,8 @@ export const DeniedValuesAttribute: {
|
|
|
199
219
|
export type DeniedValuesAttribute = DeniedValuesAttribute$instance;
|
|
200
220
|
|
|
201
221
|
export interface DisplayAttribute$instance extends Attribute {
|
|
222
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_DisplayAttribute: never;
|
|
223
|
+
|
|
202
224
|
AutoGenerateField: boolean;
|
|
203
225
|
AutoGenerateFilter: boolean;
|
|
204
226
|
get Description(): string | undefined;
|
|
@@ -233,6 +255,8 @@ export const DisplayAttribute: {
|
|
|
233
255
|
export type DisplayAttribute = DisplayAttribute$instance;
|
|
234
256
|
|
|
235
257
|
export interface DisplayColumnAttribute$instance extends Attribute {
|
|
258
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_DisplayColumnAttribute: never;
|
|
259
|
+
|
|
236
260
|
readonly DisplayColumn: string;
|
|
237
261
|
readonly SortColumn: string | undefined;
|
|
238
262
|
readonly SortDescending: boolean;
|
|
@@ -249,6 +273,8 @@ export const DisplayColumnAttribute: {
|
|
|
249
273
|
export type DisplayColumnAttribute = DisplayColumnAttribute$instance;
|
|
250
274
|
|
|
251
275
|
export interface DisplayFormatAttribute$instance extends Attribute {
|
|
276
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_DisplayFormatAttribute: never;
|
|
277
|
+
|
|
252
278
|
ApplyFormatInEditMode: boolean;
|
|
253
279
|
ConvertEmptyStringToNull: boolean;
|
|
254
280
|
get DataFormatString(): string | undefined;
|
|
@@ -270,6 +296,8 @@ export const DisplayFormatAttribute: {
|
|
|
270
296
|
export type DisplayFormatAttribute = DisplayFormatAttribute$instance;
|
|
271
297
|
|
|
272
298
|
export interface EditableAttribute$instance extends Attribute {
|
|
299
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_EditableAttribute: never;
|
|
300
|
+
|
|
273
301
|
readonly AllowEdit: boolean;
|
|
274
302
|
AllowInitialValue: boolean;
|
|
275
303
|
}
|
|
@@ -283,6 +311,8 @@ export const EditableAttribute: {
|
|
|
283
311
|
export type EditableAttribute = EditableAttribute$instance;
|
|
284
312
|
|
|
285
313
|
export interface EmailAddressAttribute$instance extends DataTypeAttribute {
|
|
314
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_EmailAddressAttribute: never;
|
|
315
|
+
|
|
286
316
|
IsValid(value: unknown): boolean;
|
|
287
317
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
288
318
|
}
|
|
@@ -296,6 +326,8 @@ export const EmailAddressAttribute: {
|
|
|
296
326
|
export type EmailAddressAttribute = EmailAddressAttribute$instance;
|
|
297
327
|
|
|
298
328
|
export interface EnumDataTypeAttribute$instance extends DataTypeAttribute {
|
|
329
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_EnumDataTypeAttribute: never;
|
|
330
|
+
|
|
299
331
|
readonly EnumType: Type;
|
|
300
332
|
IsValid(value: unknown): boolean;
|
|
301
333
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
@@ -310,6 +342,8 @@ export const EnumDataTypeAttribute: {
|
|
|
310
342
|
export type EnumDataTypeAttribute = EnumDataTypeAttribute$instance;
|
|
311
343
|
|
|
312
344
|
export interface FileExtensionsAttribute$instance extends DataTypeAttribute {
|
|
345
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_FileExtensionsAttribute: never;
|
|
346
|
+
|
|
313
347
|
Extensions: string;
|
|
314
348
|
FormatErrorMessage(name: string): string;
|
|
315
349
|
IsValid(value: unknown): boolean;
|
|
@@ -325,6 +359,8 @@ export const FileExtensionsAttribute: {
|
|
|
325
359
|
export type FileExtensionsAttribute = FileExtensionsAttribute$instance;
|
|
326
360
|
|
|
327
361
|
export interface FilterUIHintAttribute$instance extends Attribute {
|
|
362
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_FilterUIHintAttribute: never;
|
|
363
|
+
|
|
328
364
|
readonly ControlParameters: IDictionary_2<System_Internal.String, unknown | undefined>;
|
|
329
365
|
readonly FilterUIHint: string;
|
|
330
366
|
readonly PresentationLayer: string | undefined;
|
|
@@ -343,6 +379,8 @@ export const FilterUIHintAttribute: {
|
|
|
343
379
|
export type FilterUIHintAttribute = FilterUIHintAttribute$instance;
|
|
344
380
|
|
|
345
381
|
export interface KeyAttribute$instance extends Attribute {
|
|
382
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_KeyAttribute: never;
|
|
383
|
+
|
|
346
384
|
}
|
|
347
385
|
|
|
348
386
|
|
|
@@ -354,6 +392,8 @@ export const KeyAttribute: {
|
|
|
354
392
|
export type KeyAttribute = KeyAttribute$instance;
|
|
355
393
|
|
|
356
394
|
export interface LengthAttribute$instance extends ValidationAttribute {
|
|
395
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_LengthAttribute: never;
|
|
396
|
+
|
|
357
397
|
readonly MaximumLength: int;
|
|
358
398
|
readonly MinimumLength: int;
|
|
359
399
|
FormatErrorMessage(name: string): string;
|
|
@@ -370,6 +410,8 @@ export const LengthAttribute: {
|
|
|
370
410
|
export type LengthAttribute = LengthAttribute$instance;
|
|
371
411
|
|
|
372
412
|
export interface MaxLengthAttribute$instance extends ValidationAttribute {
|
|
413
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_MaxLengthAttribute: never;
|
|
414
|
+
|
|
373
415
|
readonly Length: int;
|
|
374
416
|
FormatErrorMessage(name: string): string;
|
|
375
417
|
IsValid(value: unknown): boolean;
|
|
@@ -386,6 +428,8 @@ export const MaxLengthAttribute: {
|
|
|
386
428
|
export type MaxLengthAttribute = MaxLengthAttribute$instance;
|
|
387
429
|
|
|
388
430
|
export interface MetadataTypeAttribute$instance extends Attribute {
|
|
431
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_MetadataTypeAttribute: never;
|
|
432
|
+
|
|
389
433
|
readonly MetadataClassType: Type;
|
|
390
434
|
}
|
|
391
435
|
|
|
@@ -398,6 +442,8 @@ export const MetadataTypeAttribute: {
|
|
|
398
442
|
export type MetadataTypeAttribute = MetadataTypeAttribute$instance;
|
|
399
443
|
|
|
400
444
|
export interface MinLengthAttribute$instance extends ValidationAttribute {
|
|
445
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_MinLengthAttribute: never;
|
|
446
|
+
|
|
401
447
|
readonly Length: int;
|
|
402
448
|
FormatErrorMessage(name: string): string;
|
|
403
449
|
IsValid(value: unknown): boolean;
|
|
@@ -413,6 +459,8 @@ export const MinLengthAttribute: {
|
|
|
413
459
|
export type MinLengthAttribute = MinLengthAttribute$instance;
|
|
414
460
|
|
|
415
461
|
export interface PhoneAttribute$instance extends DataTypeAttribute {
|
|
462
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_PhoneAttribute: never;
|
|
463
|
+
|
|
416
464
|
IsValid(value: unknown): boolean;
|
|
417
465
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
418
466
|
}
|
|
@@ -426,6 +474,8 @@ export const PhoneAttribute: {
|
|
|
426
474
|
export type PhoneAttribute = PhoneAttribute$instance;
|
|
427
475
|
|
|
428
476
|
export interface RangeAttribute$instance extends ValidationAttribute {
|
|
477
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_RangeAttribute: never;
|
|
478
|
+
|
|
429
479
|
ConvertValueInInvariantCulture: boolean;
|
|
430
480
|
Maximum: unknown;
|
|
431
481
|
MaximumIsExclusive: boolean;
|
|
@@ -449,6 +499,8 @@ export const RangeAttribute: {
|
|
|
449
499
|
export type RangeAttribute = RangeAttribute$instance;
|
|
450
500
|
|
|
451
501
|
export interface RegularExpressionAttribute$instance extends ValidationAttribute {
|
|
502
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_RegularExpressionAttribute: never;
|
|
503
|
+
|
|
452
504
|
readonly MatchTimeout: TimeSpan;
|
|
453
505
|
MatchTimeoutInMilliseconds: int;
|
|
454
506
|
readonly Pattern: string;
|
|
@@ -466,6 +518,8 @@ export const RegularExpressionAttribute: {
|
|
|
466
518
|
export type RegularExpressionAttribute = RegularExpressionAttribute$instance;
|
|
467
519
|
|
|
468
520
|
export interface RequiredAttribute$instance extends ValidationAttribute {
|
|
521
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_RequiredAttribute: never;
|
|
522
|
+
|
|
469
523
|
AllowEmptyStrings: boolean;
|
|
470
524
|
IsValid(value: unknown): boolean;
|
|
471
525
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
@@ -480,6 +534,8 @@ export const RequiredAttribute: {
|
|
|
480
534
|
export type RequiredAttribute = RequiredAttribute$instance;
|
|
481
535
|
|
|
482
536
|
export interface ScaffoldColumnAttribute$instance extends Attribute {
|
|
537
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_ScaffoldColumnAttribute: never;
|
|
538
|
+
|
|
483
539
|
readonly Scaffold: boolean;
|
|
484
540
|
}
|
|
485
541
|
|
|
@@ -492,6 +548,8 @@ export const ScaffoldColumnAttribute: {
|
|
|
492
548
|
export type ScaffoldColumnAttribute = ScaffoldColumnAttribute$instance;
|
|
493
549
|
|
|
494
550
|
export interface StringLengthAttribute$instance extends ValidationAttribute {
|
|
551
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_StringLengthAttribute: never;
|
|
552
|
+
|
|
495
553
|
readonly MaximumLength: int;
|
|
496
554
|
MinimumLength: int;
|
|
497
555
|
FormatErrorMessage(name: string): string;
|
|
@@ -508,6 +566,8 @@ export const StringLengthAttribute: {
|
|
|
508
566
|
export type StringLengthAttribute = StringLengthAttribute$instance;
|
|
509
567
|
|
|
510
568
|
export interface TimestampAttribute$instance extends Attribute {
|
|
569
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_TimestampAttribute: never;
|
|
570
|
+
|
|
511
571
|
}
|
|
512
572
|
|
|
513
573
|
|
|
@@ -519,6 +579,8 @@ export const TimestampAttribute: {
|
|
|
519
579
|
export type TimestampAttribute = TimestampAttribute$instance;
|
|
520
580
|
|
|
521
581
|
export interface UIHintAttribute$instance extends Attribute {
|
|
582
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_UIHintAttribute: never;
|
|
583
|
+
|
|
522
584
|
readonly ControlParameters: IDictionary_2<System_Internal.String, unknown | undefined>;
|
|
523
585
|
readonly PresentationLayer: string | undefined;
|
|
524
586
|
readonly UIHint: string;
|
|
@@ -537,6 +599,8 @@ export const UIHintAttribute: {
|
|
|
537
599
|
export type UIHintAttribute = UIHintAttribute$instance;
|
|
538
600
|
|
|
539
601
|
export interface UrlAttribute$instance extends DataTypeAttribute {
|
|
602
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_UrlAttribute: never;
|
|
603
|
+
|
|
540
604
|
IsValid(value: unknown): boolean;
|
|
541
605
|
IsValid(value: unknown, validationContext: ValidationContext): ValidationResult | undefined;
|
|
542
606
|
}
|
|
@@ -550,6 +614,8 @@ export const UrlAttribute: {
|
|
|
550
614
|
export type UrlAttribute = UrlAttribute$instance;
|
|
551
615
|
|
|
552
616
|
export interface ValidationAttribute$instance extends Attribute {
|
|
617
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_ValidationAttribute: never;
|
|
618
|
+
|
|
553
619
|
get ErrorMessage(): string | undefined;
|
|
554
620
|
set ErrorMessage(value: string | undefined);
|
|
555
621
|
get ErrorMessageResourceName(): string | undefined;
|
|
@@ -572,7 +638,9 @@ export const ValidationAttribute: (abstract new() => ValidationAttribute) & (abs
|
|
|
572
638
|
|
|
573
639
|
export type ValidationAttribute = ValidationAttribute$instance;
|
|
574
640
|
|
|
575
|
-
export interface ValidationContext$instance {
|
|
641
|
+
export interface ValidationContext$instance extends System_Internal.IServiceProvider$instance {
|
|
642
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_ValidationContext: never;
|
|
643
|
+
|
|
576
644
|
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
577
645
|
|
|
578
646
|
DisplayName: string;
|
|
@@ -598,12 +666,12 @@ export interface __ValidationContext$views {
|
|
|
598
666
|
As_IServiceProvider(): System_Internal.IServiceProvider$instance;
|
|
599
667
|
}
|
|
600
668
|
|
|
601
|
-
export interface ValidationContext$instance extends System_Internal.IServiceProvider$instance {}
|
|
602
|
-
|
|
603
669
|
export type ValidationContext = ValidationContext$instance & __ValidationContext$views;
|
|
604
670
|
|
|
605
671
|
|
|
606
672
|
export interface ValidationException$instance extends Exception {
|
|
673
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_ValidationException: never;
|
|
674
|
+
|
|
607
675
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
608
676
|
|
|
609
677
|
readonly ValidationAttribute: ValidationAttribute | undefined;
|
|
@@ -630,6 +698,8 @@ export type ValidationException = ValidationException$instance & __ValidationExc
|
|
|
630
698
|
|
|
631
699
|
|
|
632
700
|
export interface ValidationResult$instance {
|
|
701
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_ValidationResult: never;
|
|
702
|
+
|
|
633
703
|
get ErrorMessage(): string | undefined;
|
|
634
704
|
set ErrorMessage(value: string | undefined);
|
|
635
705
|
readonly MemberNames: IEnumerable_1<System_Internal.String>;
|
|
@@ -17,6 +17,8 @@ export enum DatabaseGeneratedOption {
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
export interface ColumnAttribute$instance extends Attribute {
|
|
20
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_ColumnAttribute: never;
|
|
21
|
+
|
|
20
22
|
readonly Name: string | undefined;
|
|
21
23
|
Order: int;
|
|
22
24
|
get TypeName(): string | undefined;
|
|
@@ -33,6 +35,8 @@ export const ColumnAttribute: {
|
|
|
33
35
|
export type ColumnAttribute = ColumnAttribute$instance;
|
|
34
36
|
|
|
35
37
|
export interface ComplexTypeAttribute$instance extends Attribute {
|
|
38
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_ComplexTypeAttribute: never;
|
|
39
|
+
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
|
|
@@ -44,6 +48,8 @@ export const ComplexTypeAttribute: {
|
|
|
44
48
|
export type ComplexTypeAttribute = ComplexTypeAttribute$instance;
|
|
45
49
|
|
|
46
50
|
export interface DatabaseGeneratedAttribute$instance extends Attribute {
|
|
51
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_DatabaseGeneratedAttribute: never;
|
|
52
|
+
|
|
47
53
|
readonly DatabaseGeneratedOption: DatabaseGeneratedOption;
|
|
48
54
|
}
|
|
49
55
|
|
|
@@ -56,6 +62,8 @@ export const DatabaseGeneratedAttribute: {
|
|
|
56
62
|
export type DatabaseGeneratedAttribute = DatabaseGeneratedAttribute$instance;
|
|
57
63
|
|
|
58
64
|
export interface ForeignKeyAttribute$instance extends Attribute {
|
|
65
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_ForeignKeyAttribute: never;
|
|
66
|
+
|
|
59
67
|
readonly Name: string;
|
|
60
68
|
}
|
|
61
69
|
|
|
@@ -68,6 +76,8 @@ export const ForeignKeyAttribute: {
|
|
|
68
76
|
export type ForeignKeyAttribute = ForeignKeyAttribute$instance;
|
|
69
77
|
|
|
70
78
|
export interface InversePropertyAttribute$instance extends Attribute {
|
|
79
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_InversePropertyAttribute: never;
|
|
80
|
+
|
|
71
81
|
readonly Property: string;
|
|
72
82
|
}
|
|
73
83
|
|
|
@@ -80,6 +90,8 @@ export const InversePropertyAttribute: {
|
|
|
80
90
|
export type InversePropertyAttribute = InversePropertyAttribute$instance;
|
|
81
91
|
|
|
82
92
|
export interface NotMappedAttribute$instance extends Attribute {
|
|
93
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_NotMappedAttribute: never;
|
|
94
|
+
|
|
83
95
|
}
|
|
84
96
|
|
|
85
97
|
|
|
@@ -91,6 +103,8 @@ export const NotMappedAttribute: {
|
|
|
91
103
|
export type NotMappedAttribute = NotMappedAttribute$instance;
|
|
92
104
|
|
|
93
105
|
export interface TableAttribute$instance extends Attribute {
|
|
106
|
+
readonly __tsonic_type_System_ComponentModel_DataAnnotations_Schema_TableAttribute: never;
|
|
107
|
+
|
|
94
108
|
readonly Name: string;
|
|
95
109
|
get Schema(): string | undefined;
|
|
96
110
|
set Schema(value: string | undefined);
|
|
@@ -396,6 +396,8 @@ export interface ITypeResolutionService$instance {
|
|
|
396
396
|
export type ITypeResolutionService = ITypeResolutionService$instance;
|
|
397
397
|
|
|
398
398
|
export interface ActiveDesignerEventArgs$instance extends EventArgs {
|
|
399
|
+
readonly __tsonic_type_System_ComponentModel_Design_ActiveDesignerEventArgs: never;
|
|
400
|
+
|
|
399
401
|
readonly NewDesigner: IDesignerHost | undefined;
|
|
400
402
|
readonly OldDesigner: IDesignerHost | undefined;
|
|
401
403
|
}
|
|
@@ -409,6 +411,8 @@ export const ActiveDesignerEventArgs: {
|
|
|
409
411
|
export type ActiveDesignerEventArgs = ActiveDesignerEventArgs$instance;
|
|
410
412
|
|
|
411
413
|
export interface CheckoutException$instance extends ExternalException {
|
|
414
|
+
readonly __tsonic_type_System_ComponentModel_Design_CheckoutException: never;
|
|
415
|
+
|
|
412
416
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
413
417
|
|
|
414
418
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -432,6 +436,8 @@ export type CheckoutException = CheckoutException$instance & __CheckoutException
|
|
|
432
436
|
|
|
433
437
|
|
|
434
438
|
export interface CommandID$instance {
|
|
439
|
+
readonly __tsonic_type_System_ComponentModel_Design_CommandID: never;
|
|
440
|
+
|
|
435
441
|
readonly Guid: Guid;
|
|
436
442
|
readonly ID: int;
|
|
437
443
|
Equals(obj: unknown): boolean;
|
|
@@ -448,6 +454,8 @@ export const CommandID: {
|
|
|
448
454
|
export type CommandID = CommandID$instance;
|
|
449
455
|
|
|
450
456
|
export interface ComponentChangedEventArgs$instance extends EventArgs {
|
|
457
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentChangedEventArgs: never;
|
|
458
|
+
|
|
451
459
|
readonly Component: unknown | undefined;
|
|
452
460
|
readonly Member: MemberDescriptor | undefined;
|
|
453
461
|
readonly NewValue: unknown | undefined;
|
|
@@ -463,6 +471,8 @@ export const ComponentChangedEventArgs: {
|
|
|
463
471
|
export type ComponentChangedEventArgs = ComponentChangedEventArgs$instance;
|
|
464
472
|
|
|
465
473
|
export interface ComponentChangingEventArgs$instance extends EventArgs {
|
|
474
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentChangingEventArgs: never;
|
|
475
|
+
|
|
466
476
|
readonly Component: unknown | undefined;
|
|
467
477
|
readonly Member: MemberDescriptor | undefined;
|
|
468
478
|
}
|
|
@@ -476,6 +486,8 @@ export const ComponentChangingEventArgs: {
|
|
|
476
486
|
export type ComponentChangingEventArgs = ComponentChangingEventArgs$instance;
|
|
477
487
|
|
|
478
488
|
export interface ComponentEventArgs$instance extends EventArgs {
|
|
489
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentEventArgs: never;
|
|
490
|
+
|
|
479
491
|
readonly Component: IComponent | undefined;
|
|
480
492
|
}
|
|
481
493
|
|
|
@@ -488,6 +500,8 @@ export const ComponentEventArgs: {
|
|
|
488
500
|
export type ComponentEventArgs = ComponentEventArgs$instance;
|
|
489
501
|
|
|
490
502
|
export interface ComponentRenameEventArgs$instance extends EventArgs {
|
|
503
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentRenameEventArgs: never;
|
|
504
|
+
|
|
491
505
|
readonly Component: unknown | undefined;
|
|
492
506
|
readonly NewName: string | undefined;
|
|
493
507
|
readonly OldName: string | undefined;
|
|
@@ -502,6 +516,8 @@ export const ComponentRenameEventArgs: {
|
|
|
502
516
|
export type ComponentRenameEventArgs = ComponentRenameEventArgs$instance;
|
|
503
517
|
|
|
504
518
|
export interface DesignerCollection$instance {
|
|
519
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerCollection: never;
|
|
520
|
+
|
|
505
521
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
506
522
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
507
523
|
|
|
@@ -526,6 +542,8 @@ export type DesignerCollection = DesignerCollection$instance & __DesignerCollect
|
|
|
526
542
|
|
|
527
543
|
|
|
528
544
|
export interface DesignerEventArgs$instance extends EventArgs {
|
|
545
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerEventArgs: never;
|
|
546
|
+
|
|
529
547
|
readonly Designer: IDesignerHost | undefined;
|
|
530
548
|
}
|
|
531
549
|
|
|
@@ -537,7 +555,9 @@ export const DesignerEventArgs: {
|
|
|
537
555
|
|
|
538
556
|
export type DesignerEventArgs = DesignerEventArgs$instance;
|
|
539
557
|
|
|
540
|
-
export interface DesignerOptionService$instance {
|
|
558
|
+
export interface DesignerOptionService$instance extends IDesignerOptionService$instance {
|
|
559
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerOptionService: never;
|
|
560
|
+
|
|
541
561
|
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerOptionService: never;
|
|
542
562
|
|
|
543
563
|
readonly Options: DesignerOptionService_DesignerOptionCollection;
|
|
@@ -554,12 +574,12 @@ export interface __DesignerOptionService$views {
|
|
|
554
574
|
As_IDesignerOptionService(): IDesignerOptionService$instance;
|
|
555
575
|
}
|
|
556
576
|
|
|
557
|
-
export interface DesignerOptionService$instance extends IDesignerOptionService$instance {}
|
|
558
|
-
|
|
559
577
|
export type DesignerOptionService = DesignerOptionService$instance & __DesignerOptionService$views;
|
|
560
578
|
|
|
561
579
|
|
|
562
580
|
export interface DesignerOptionService_DesignerOptionCollection$instance {
|
|
581
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerOptionService_DesignerOptionCollection: never;
|
|
582
|
+
|
|
563
583
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
564
584
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
565
585
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -591,6 +611,8 @@ export type DesignerOptionService_DesignerOptionCollection = DesignerOptionServi
|
|
|
591
611
|
|
|
592
612
|
|
|
593
613
|
export interface DesignerTransaction$instance {
|
|
614
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerTransaction: never;
|
|
615
|
+
|
|
594
616
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
595
617
|
|
|
596
618
|
Canceled: boolean;
|
|
@@ -617,6 +639,8 @@ export type DesignerTransaction = DesignerTransaction$instance & __DesignerTrans
|
|
|
617
639
|
|
|
618
640
|
|
|
619
641
|
export interface DesignerTransactionCloseEventArgs$instance extends EventArgs {
|
|
642
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerTransactionCloseEventArgs: never;
|
|
643
|
+
|
|
620
644
|
readonly LastTransaction: boolean;
|
|
621
645
|
readonly TransactionCommitted: boolean;
|
|
622
646
|
}
|
|
@@ -631,6 +655,8 @@ export const DesignerTransactionCloseEventArgs: {
|
|
|
631
655
|
export type DesignerTransactionCloseEventArgs = DesignerTransactionCloseEventArgs$instance;
|
|
632
656
|
|
|
633
657
|
export interface DesignerVerb$instance extends MenuCommand {
|
|
658
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerVerb: never;
|
|
659
|
+
|
|
634
660
|
Description: string;
|
|
635
661
|
readonly Text: string;
|
|
636
662
|
ToString(): string;
|
|
@@ -646,6 +672,8 @@ export const DesignerVerb: {
|
|
|
646
672
|
export type DesignerVerb = DesignerVerb$instance;
|
|
647
673
|
|
|
648
674
|
export interface DesignerVerbCollection$instance extends CollectionBase {
|
|
675
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerVerbCollection: never;
|
|
676
|
+
|
|
649
677
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
650
678
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
651
679
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -682,6 +710,8 @@ export type DesignerVerbCollection = DesignerVerbCollection$instance & __Designe
|
|
|
682
710
|
|
|
683
711
|
|
|
684
712
|
export interface DesigntimeLicenseContext$instance extends LicenseContext {
|
|
713
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesigntimeLicenseContext: never;
|
|
714
|
+
|
|
685
715
|
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
686
716
|
|
|
687
717
|
readonly UsageMode: LicenseUsageMode;
|
|
@@ -704,6 +734,8 @@ export type DesigntimeLicenseContext = DesigntimeLicenseContext$instance & __Des
|
|
|
704
734
|
|
|
705
735
|
|
|
706
736
|
export interface DesigntimeLicenseContextSerializer$instance {
|
|
737
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesigntimeLicenseContextSerializer: never;
|
|
738
|
+
|
|
707
739
|
}
|
|
708
740
|
|
|
709
741
|
|
|
@@ -715,6 +747,8 @@ export const DesigntimeLicenseContextSerializer: {
|
|
|
715
747
|
export type DesigntimeLicenseContextSerializer = DesigntimeLicenseContextSerializer$instance;
|
|
716
748
|
|
|
717
749
|
export interface HelpKeywordAttribute$instance extends Attribute {
|
|
750
|
+
readonly __tsonic_type_System_ComponentModel_Design_HelpKeywordAttribute: never;
|
|
751
|
+
|
|
718
752
|
readonly HelpKeyword: string | undefined;
|
|
719
753
|
Equals(obj: unknown): boolean;
|
|
720
754
|
GetHashCode(): int;
|
|
@@ -733,6 +767,8 @@ export const HelpKeywordAttribute: {
|
|
|
733
767
|
export type HelpKeywordAttribute = HelpKeywordAttribute$instance;
|
|
734
768
|
|
|
735
769
|
export interface MenuCommand$instance {
|
|
770
|
+
readonly __tsonic_type_System_ComponentModel_Design_MenuCommand: never;
|
|
771
|
+
|
|
736
772
|
Checked: boolean;
|
|
737
773
|
readonly CommandID: CommandID | undefined;
|
|
738
774
|
Enabled: boolean;
|
|
@@ -755,6 +791,8 @@ export const MenuCommand: {
|
|
|
755
791
|
export type MenuCommand = MenuCommand$instance;
|
|
756
792
|
|
|
757
793
|
export interface ServiceContainer$instance {
|
|
794
|
+
readonly __tsonic_type_System_ComponentModel_Design_ServiceContainer: never;
|
|
795
|
+
|
|
758
796
|
readonly __tsonic_iface_System_ComponentModel_Design_IServiceContainer: never;
|
|
759
797
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
760
798
|
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
@@ -788,6 +826,8 @@ export type ServiceContainer = ServiceContainer$instance & __ServiceContainer$vi
|
|
|
788
826
|
|
|
789
827
|
|
|
790
828
|
export interface StandardCommands$instance {
|
|
829
|
+
readonly __tsonic_type_System_ComponentModel_Design_StandardCommands: never;
|
|
830
|
+
|
|
791
831
|
}
|
|
792
832
|
|
|
793
833
|
|
|
@@ -854,6 +894,8 @@ export const StandardCommands: {
|
|
|
854
894
|
export type StandardCommands = StandardCommands$instance;
|
|
855
895
|
|
|
856
896
|
export interface StandardToolWindows$instance {
|
|
897
|
+
readonly __tsonic_type_System_ComponentModel_Design_StandardToolWindows: never;
|
|
898
|
+
|
|
857
899
|
}
|
|
858
900
|
|
|
859
901
|
|
|
@@ -873,6 +915,8 @@ export const StandardToolWindows: {
|
|
|
873
915
|
export type StandardToolWindows = StandardToolWindows$instance;
|
|
874
916
|
|
|
875
917
|
export interface TypeDescriptionProviderService$instance {
|
|
918
|
+
readonly __tsonic_type_System_ComponentModel_Design_TypeDescriptionProviderService: never;
|
|
919
|
+
|
|
876
920
|
GetProvider(instance: unknown): TypeDescriptionProvider;
|
|
877
921
|
GetProvider(type: Type): TypeDescriptionProvider;
|
|
878
922
|
}
|
|
@@ -147,6 +147,8 @@ export interface INameCreationService$instance {
|
|
|
147
147
|
export type INameCreationService = INameCreationService$instance;
|
|
148
148
|
|
|
149
149
|
export interface MemberRelationship$instance {
|
|
150
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_MemberRelationship: never;
|
|
151
|
+
|
|
150
152
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
151
153
|
|
|
152
154
|
readonly IsEmpty: boolean;
|
|
@@ -175,6 +177,8 @@ export type MemberRelationship = MemberRelationship$instance & __MemberRelations
|
|
|
175
177
|
|
|
176
178
|
|
|
177
179
|
export interface ComponentSerializationService$instance {
|
|
180
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_ComponentSerializationService: never;
|
|
181
|
+
|
|
178
182
|
CreateStore(): SerializationStore;
|
|
179
183
|
Deserialize(store: SerializationStore): ICollection;
|
|
180
184
|
Deserialize(store: SerializationStore, container: IContainer): ICollection;
|
|
@@ -196,6 +200,8 @@ export const ComponentSerializationService: (abstract new() => ComponentSerializ
|
|
|
196
200
|
export type ComponentSerializationService = ComponentSerializationService$instance;
|
|
197
201
|
|
|
198
202
|
export interface ContextStack$instance {
|
|
203
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_ContextStack: never;
|
|
204
|
+
|
|
199
205
|
readonly Current: unknown | undefined;
|
|
200
206
|
Append(context: unknown): void;
|
|
201
207
|
get_Item(level: int): unknown | undefined;
|
|
@@ -213,6 +219,8 @@ export const ContextStack: {
|
|
|
213
219
|
export type ContextStack = ContextStack$instance;
|
|
214
220
|
|
|
215
221
|
export interface DefaultSerializationProviderAttribute$instance extends Attribute {
|
|
222
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_DefaultSerializationProviderAttribute: never;
|
|
223
|
+
|
|
216
224
|
readonly ProviderTypeName: string;
|
|
217
225
|
}
|
|
218
226
|
|
|
@@ -226,6 +234,8 @@ export const DefaultSerializationProviderAttribute: {
|
|
|
226
234
|
export type DefaultSerializationProviderAttribute = DefaultSerializationProviderAttribute$instance;
|
|
227
235
|
|
|
228
236
|
export interface DesignerLoader$instance {
|
|
237
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_DesignerLoader: never;
|
|
238
|
+
|
|
229
239
|
readonly Loading: boolean;
|
|
230
240
|
BeginLoad(host: IDesignerLoaderHost): void;
|
|
231
241
|
Dispose(): void;
|
|
@@ -240,6 +250,8 @@ export const DesignerLoader: (abstract new() => DesignerLoader) & {
|
|
|
240
250
|
export type DesignerLoader = DesignerLoader$instance;
|
|
241
251
|
|
|
242
252
|
export interface DesignerSerializerAttribute$instance extends Attribute {
|
|
253
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_DesignerSerializerAttribute: never;
|
|
254
|
+
|
|
243
255
|
readonly SerializerBaseTypeName: string | undefined;
|
|
244
256
|
readonly SerializerTypeName: string | undefined;
|
|
245
257
|
readonly TypeId: unknown;
|
|
@@ -256,6 +268,8 @@ export const DesignerSerializerAttribute: {
|
|
|
256
268
|
export type DesignerSerializerAttribute = DesignerSerializerAttribute$instance;
|
|
257
269
|
|
|
258
270
|
export interface InstanceDescriptor$instance {
|
|
271
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_InstanceDescriptor: never;
|
|
272
|
+
|
|
259
273
|
readonly Arguments: ICollection;
|
|
260
274
|
readonly IsComplete: boolean;
|
|
261
275
|
readonly MemberInfo: MemberInfo | undefined;
|
|
@@ -272,6 +286,8 @@ export const InstanceDescriptor: {
|
|
|
272
286
|
export type InstanceDescriptor = InstanceDescriptor$instance;
|
|
273
287
|
|
|
274
288
|
export interface MemberRelationshipService$instance {
|
|
289
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_MemberRelationshipService: never;
|
|
290
|
+
|
|
275
291
|
get_Item(source: MemberRelationship): MemberRelationship;
|
|
276
292
|
get_Item(sourceOwner: unknown, sourceMember: MemberDescriptor): MemberRelationship;
|
|
277
293
|
GetRelationship(source: MemberRelationship): MemberRelationship;
|
|
@@ -289,6 +305,8 @@ export const MemberRelationshipService: (abstract new() => MemberRelationshipSer
|
|
|
289
305
|
export type MemberRelationshipService = MemberRelationshipService$instance;
|
|
290
306
|
|
|
291
307
|
export interface ResolveNameEventArgs$instance extends EventArgs {
|
|
308
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_ResolveNameEventArgs: never;
|
|
309
|
+
|
|
292
310
|
readonly Name: string | undefined;
|
|
293
311
|
get Value(): unknown | undefined;
|
|
294
312
|
set Value(value: unknown | undefined);
|
|
@@ -303,6 +321,8 @@ export const ResolveNameEventArgs: {
|
|
|
303
321
|
export type ResolveNameEventArgs = ResolveNameEventArgs$instance;
|
|
304
322
|
|
|
305
323
|
export interface RootDesignerSerializerAttribute$instance extends Attribute {
|
|
324
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_RootDesignerSerializerAttribute: never;
|
|
325
|
+
|
|
306
326
|
readonly Reloadable: boolean;
|
|
307
327
|
readonly SerializerBaseTypeName: string | undefined;
|
|
308
328
|
readonly SerializerTypeName: string | undefined;
|
|
@@ -320,6 +340,8 @@ export const RootDesignerSerializerAttribute: {
|
|
|
320
340
|
export type RootDesignerSerializerAttribute = RootDesignerSerializerAttribute$instance;
|
|
321
341
|
|
|
322
342
|
export interface SerializationStore$instance {
|
|
343
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_SerializationStore: never;
|
|
344
|
+
|
|
323
345
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
324
346
|
|
|
325
347
|
readonly Errors: ICollection;
|