@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
|
@@ -105,6 +105,8 @@ export enum TableIndex {
|
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
export interface ArrayShapeEncoder$instance {
|
|
108
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ArrayShapeEncoder: never;
|
|
109
|
+
|
|
108
110
|
readonly Builder: BlobBuilder;
|
|
109
111
|
Shape(rank: int, sizes: ImmutableArray_1<System_Internal.Int32>, lowerBounds: ImmutableArray_1<System_Internal.Int32>): void;
|
|
110
112
|
}
|
|
@@ -118,6 +120,8 @@ export const ArrayShapeEncoder: {
|
|
|
118
120
|
export type ArrayShapeEncoder = ArrayShapeEncoder$instance;
|
|
119
121
|
|
|
120
122
|
export interface BlobEncoder$instance {
|
|
123
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_BlobEncoder: never;
|
|
124
|
+
|
|
121
125
|
readonly Builder: BlobBuilder;
|
|
122
126
|
CustomAttributeSignature(fixedArguments: FixedArgumentsEncoder, namedArguments: CustomAttributeNamedArgumentsEncoder): void;
|
|
123
127
|
CustomAttributeSignature(fixedArguments: Action_1<FixedArgumentsEncoder>, namedArguments: Action_1<CustomAttributeNamedArgumentsEncoder>): void;
|
|
@@ -141,6 +145,8 @@ export const BlobEncoder: {
|
|
|
141
145
|
export type BlobEncoder = BlobEncoder$instance;
|
|
142
146
|
|
|
143
147
|
export interface CustomAttributeArrayTypeEncoder$instance {
|
|
148
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_CustomAttributeArrayTypeEncoder: never;
|
|
149
|
+
|
|
144
150
|
readonly Builder: BlobBuilder;
|
|
145
151
|
ElementType(): CustomAttributeElementTypeEncoder;
|
|
146
152
|
ObjectArray(): void;
|
|
@@ -155,6 +161,8 @@ export const CustomAttributeArrayTypeEncoder: {
|
|
|
155
161
|
export type CustomAttributeArrayTypeEncoder = CustomAttributeArrayTypeEncoder$instance;
|
|
156
162
|
|
|
157
163
|
export interface CustomAttributeElementTypeEncoder$instance {
|
|
164
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_CustomAttributeElementTypeEncoder: never;
|
|
165
|
+
|
|
158
166
|
readonly Builder: BlobBuilder;
|
|
159
167
|
Boolean(): void;
|
|
160
168
|
Byte(): void;
|
|
@@ -183,6 +191,8 @@ export const CustomAttributeElementTypeEncoder: {
|
|
|
183
191
|
export type CustomAttributeElementTypeEncoder = CustomAttributeElementTypeEncoder$instance;
|
|
184
192
|
|
|
185
193
|
export interface CustomAttributeNamedArgumentsEncoder$instance {
|
|
194
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_CustomAttributeNamedArgumentsEncoder: never;
|
|
195
|
+
|
|
186
196
|
readonly Builder: BlobBuilder;
|
|
187
197
|
Count(count: int): NamedArgumentsEncoder;
|
|
188
198
|
}
|
|
@@ -196,6 +206,8 @@ export const CustomAttributeNamedArgumentsEncoder: {
|
|
|
196
206
|
export type CustomAttributeNamedArgumentsEncoder = CustomAttributeNamedArgumentsEncoder$instance;
|
|
197
207
|
|
|
198
208
|
export interface CustomModifiersEncoder$instance {
|
|
209
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_CustomModifiersEncoder: never;
|
|
210
|
+
|
|
199
211
|
readonly Builder: BlobBuilder;
|
|
200
212
|
AddModifier(type: EntityHandle, isOptional: boolean): CustomModifiersEncoder;
|
|
201
213
|
}
|
|
@@ -209,6 +221,10 @@ export const CustomModifiersEncoder: {
|
|
|
209
221
|
export type CustomModifiersEncoder = CustomModifiersEncoder$instance;
|
|
210
222
|
|
|
211
223
|
export interface EditAndContinueLogEntry$instance {
|
|
224
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_EditAndContinueLogEntry: never;
|
|
225
|
+
|
|
226
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
227
|
+
|
|
212
228
|
readonly Handle: EntityHandle;
|
|
213
229
|
readonly Operation: EditAndContinueOperation;
|
|
214
230
|
Equals(obj: unknown): boolean;
|
|
@@ -233,6 +249,8 @@ export type EditAndContinueLogEntry = EditAndContinueLogEntry$instance & __EditA
|
|
|
233
249
|
|
|
234
250
|
|
|
235
251
|
export interface ExceptionRegionEncoder$instance {
|
|
252
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ExceptionRegionEncoder: never;
|
|
253
|
+
|
|
236
254
|
readonly Builder: BlobBuilder;
|
|
237
255
|
readonly HasSmallFormat: boolean;
|
|
238
256
|
Add(kind: ExceptionRegionKind, tryOffset: int, tryLength: int, handlerOffset: int, handlerLength: int, catchType?: EntityHandle, filterOffset?: int): ExceptionRegionEncoder;
|
|
@@ -253,6 +271,8 @@ export const ExceptionRegionEncoder: {
|
|
|
253
271
|
export type ExceptionRegionEncoder = ExceptionRegionEncoder$instance;
|
|
254
272
|
|
|
255
273
|
export interface FieldTypeEncoder$instance {
|
|
274
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_FieldTypeEncoder: never;
|
|
275
|
+
|
|
256
276
|
readonly Builder: BlobBuilder;
|
|
257
277
|
CustomModifiers(): CustomModifiersEncoder;
|
|
258
278
|
Type(isByRef?: boolean): SignatureTypeEncoder;
|
|
@@ -268,6 +288,8 @@ export const FieldTypeEncoder: {
|
|
|
268
288
|
export type FieldTypeEncoder = FieldTypeEncoder$instance;
|
|
269
289
|
|
|
270
290
|
export interface FixedArgumentsEncoder$instance {
|
|
291
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_FixedArgumentsEncoder: never;
|
|
292
|
+
|
|
271
293
|
readonly Builder: BlobBuilder;
|
|
272
294
|
AddArgument(): LiteralEncoder;
|
|
273
295
|
}
|
|
@@ -281,6 +303,8 @@ export const FixedArgumentsEncoder: {
|
|
|
281
303
|
export type FixedArgumentsEncoder = FixedArgumentsEncoder$instance;
|
|
282
304
|
|
|
283
305
|
export interface GenericTypeArgumentsEncoder$instance {
|
|
306
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_GenericTypeArgumentsEncoder: never;
|
|
307
|
+
|
|
284
308
|
readonly Builder: BlobBuilder;
|
|
285
309
|
AddArgument(): SignatureTypeEncoder;
|
|
286
310
|
}
|
|
@@ -294,6 +318,8 @@ export const GenericTypeArgumentsEncoder: {
|
|
|
294
318
|
export type GenericTypeArgumentsEncoder = GenericTypeArgumentsEncoder$instance;
|
|
295
319
|
|
|
296
320
|
export interface InstructionEncoder$instance {
|
|
321
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_InstructionEncoder: never;
|
|
322
|
+
|
|
297
323
|
readonly CodeBuilder: BlobBuilder;
|
|
298
324
|
readonly ControlFlowBuilder: ControlFlowBuilder | undefined;
|
|
299
325
|
readonly Offset: int;
|
|
@@ -331,6 +357,10 @@ export const InstructionEncoder: {
|
|
|
331
357
|
export type InstructionEncoder = InstructionEncoder$instance;
|
|
332
358
|
|
|
333
359
|
export interface LabelHandle$instance {
|
|
360
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_LabelHandle: never;
|
|
361
|
+
|
|
362
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
363
|
+
|
|
334
364
|
readonly Id: int;
|
|
335
365
|
readonly IsNil: boolean;
|
|
336
366
|
Equals(other: LabelHandle): boolean;
|
|
@@ -355,6 +385,8 @@ export type LabelHandle = LabelHandle$instance & __LabelHandle$views;
|
|
|
355
385
|
|
|
356
386
|
|
|
357
387
|
export interface LiteralEncoder$instance {
|
|
388
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_LiteralEncoder: never;
|
|
389
|
+
|
|
358
390
|
readonly Builder: BlobBuilder;
|
|
359
391
|
Scalar(): ScalarEncoder;
|
|
360
392
|
TaggedScalar(type: CustomAttributeElementTypeEncoder, scalar: ScalarEncoder): void;
|
|
@@ -373,6 +405,8 @@ export const LiteralEncoder: {
|
|
|
373
405
|
export type LiteralEncoder = LiteralEncoder$instance;
|
|
374
406
|
|
|
375
407
|
export interface LiteralsEncoder$instance {
|
|
408
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_LiteralsEncoder: never;
|
|
409
|
+
|
|
376
410
|
readonly Builder: BlobBuilder;
|
|
377
411
|
AddLiteral(): LiteralEncoder;
|
|
378
412
|
}
|
|
@@ -386,6 +420,8 @@ export const LiteralsEncoder: {
|
|
|
386
420
|
export type LiteralsEncoder = LiteralsEncoder$instance;
|
|
387
421
|
|
|
388
422
|
export interface LocalVariablesEncoder$instance {
|
|
423
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_LocalVariablesEncoder: never;
|
|
424
|
+
|
|
389
425
|
readonly Builder: BlobBuilder;
|
|
390
426
|
AddVariable(): LocalVariableTypeEncoder;
|
|
391
427
|
}
|
|
@@ -399,6 +435,8 @@ export const LocalVariablesEncoder: {
|
|
|
399
435
|
export type LocalVariablesEncoder = LocalVariablesEncoder$instance;
|
|
400
436
|
|
|
401
437
|
export interface LocalVariableTypeEncoder$instance {
|
|
438
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_LocalVariableTypeEncoder: never;
|
|
439
|
+
|
|
402
440
|
readonly Builder: BlobBuilder;
|
|
403
441
|
CustomModifiers(): CustomModifiersEncoder;
|
|
404
442
|
Type(isByRef?: boolean, isPinned?: boolean): SignatureTypeEncoder;
|
|
@@ -414,6 +452,8 @@ export const LocalVariableTypeEncoder: {
|
|
|
414
452
|
export type LocalVariableTypeEncoder = LocalVariableTypeEncoder$instance;
|
|
415
453
|
|
|
416
454
|
export interface MethodBodyStreamEncoder$instance {
|
|
455
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MethodBodyStreamEncoder: never;
|
|
456
|
+
|
|
417
457
|
readonly Builder: BlobBuilder;
|
|
418
458
|
AddMethodBody(codeSize: int, maxStack: int, exceptionRegionCount: int, hasSmallExceptionRegions: boolean, localVariablesSignature: StandaloneSignatureHandle, attributes: MethodBodyAttributes): MethodBodyStreamEncoder_MethodBody;
|
|
419
459
|
AddMethodBody(codeSize: int, maxStack?: int, exceptionRegionCount?: int, hasSmallExceptionRegions?: boolean, localVariablesSignature?: StandaloneSignatureHandle, attributes?: MethodBodyAttributes, hasDynamicStackAllocation?: boolean): MethodBodyStreamEncoder_MethodBody;
|
|
@@ -430,6 +470,8 @@ export const MethodBodyStreamEncoder: {
|
|
|
430
470
|
export type MethodBodyStreamEncoder = MethodBodyStreamEncoder$instance;
|
|
431
471
|
|
|
432
472
|
export interface MethodBodyStreamEncoder_MethodBody$instance {
|
|
473
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MethodBodyStreamEncoder_MethodBody: never;
|
|
474
|
+
|
|
433
475
|
readonly ExceptionRegions: ExceptionRegionEncoder;
|
|
434
476
|
readonly Instructions: Blob;
|
|
435
477
|
readonly Offset: int;
|
|
@@ -444,6 +486,8 @@ export const MethodBodyStreamEncoder_MethodBody: {
|
|
|
444
486
|
export type MethodBodyStreamEncoder_MethodBody = MethodBodyStreamEncoder_MethodBody$instance;
|
|
445
487
|
|
|
446
488
|
export interface MethodSignatureEncoder$instance {
|
|
489
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MethodSignatureEncoder: never;
|
|
490
|
+
|
|
447
491
|
readonly Builder: BlobBuilder;
|
|
448
492
|
readonly HasVarArgs: boolean;
|
|
449
493
|
Parameters(parameterCount: int, returnType: ReturnTypeEncoder, parameters: ParametersEncoder): void;
|
|
@@ -459,6 +503,8 @@ export const MethodSignatureEncoder: {
|
|
|
459
503
|
export type MethodSignatureEncoder = MethodSignatureEncoder$instance;
|
|
460
504
|
|
|
461
505
|
export interface NamedArgumentsEncoder$instance {
|
|
506
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_NamedArgumentsEncoder: never;
|
|
507
|
+
|
|
462
508
|
readonly Builder: BlobBuilder;
|
|
463
509
|
AddArgument(isField: boolean, type: NamedArgumentTypeEncoder, name: NameEncoder, literal: LiteralEncoder): void;
|
|
464
510
|
AddArgument(isField: boolean, type: Action_1<NamedArgumentTypeEncoder>, name: Action_1<NameEncoder>, literal: Action_1<LiteralEncoder>): void;
|
|
@@ -473,6 +519,8 @@ export const NamedArgumentsEncoder: {
|
|
|
473
519
|
export type NamedArgumentsEncoder = NamedArgumentsEncoder$instance;
|
|
474
520
|
|
|
475
521
|
export interface NamedArgumentTypeEncoder$instance {
|
|
522
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_NamedArgumentTypeEncoder: never;
|
|
523
|
+
|
|
476
524
|
readonly Builder: BlobBuilder;
|
|
477
525
|
Object(): void;
|
|
478
526
|
ScalarType(): CustomAttributeElementTypeEncoder;
|
|
@@ -488,6 +536,8 @@ export const NamedArgumentTypeEncoder: {
|
|
|
488
536
|
export type NamedArgumentTypeEncoder = NamedArgumentTypeEncoder$instance;
|
|
489
537
|
|
|
490
538
|
export interface NameEncoder$instance {
|
|
539
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_NameEncoder: never;
|
|
540
|
+
|
|
491
541
|
readonly Builder: BlobBuilder;
|
|
492
542
|
Name(name: string): void;
|
|
493
543
|
}
|
|
@@ -501,6 +551,8 @@ export const NameEncoder: {
|
|
|
501
551
|
export type NameEncoder = NameEncoder$instance;
|
|
502
552
|
|
|
503
553
|
export interface ParametersEncoder$instance {
|
|
554
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ParametersEncoder: never;
|
|
555
|
+
|
|
504
556
|
readonly Builder: BlobBuilder;
|
|
505
557
|
readonly HasVarArgs: boolean;
|
|
506
558
|
AddParameter(): ParameterTypeEncoder;
|
|
@@ -516,6 +568,8 @@ export const ParametersEncoder: {
|
|
|
516
568
|
export type ParametersEncoder = ParametersEncoder$instance;
|
|
517
569
|
|
|
518
570
|
export interface ParameterTypeEncoder$instance {
|
|
571
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ParameterTypeEncoder: never;
|
|
572
|
+
|
|
519
573
|
readonly Builder: BlobBuilder;
|
|
520
574
|
CustomModifiers(): CustomModifiersEncoder;
|
|
521
575
|
Type(isByRef?: boolean): SignatureTypeEncoder;
|
|
@@ -531,6 +585,8 @@ export const ParameterTypeEncoder: {
|
|
|
531
585
|
export type ParameterTypeEncoder = ParameterTypeEncoder$instance;
|
|
532
586
|
|
|
533
587
|
export interface PermissionSetEncoder$instance {
|
|
588
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_PermissionSetEncoder: never;
|
|
589
|
+
|
|
534
590
|
readonly Builder: BlobBuilder;
|
|
535
591
|
AddPermission(typeName: string, encodedArguments: ImmutableArray_1<System_Internal.Byte>): PermissionSetEncoder;
|
|
536
592
|
AddPermission(typeName: string, encodedArguments: BlobBuilder): PermissionSetEncoder;
|
|
@@ -545,6 +601,8 @@ export const PermissionSetEncoder: {
|
|
|
545
601
|
export type PermissionSetEncoder = PermissionSetEncoder$instance;
|
|
546
602
|
|
|
547
603
|
export interface ReturnTypeEncoder$instance {
|
|
604
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ReturnTypeEncoder: never;
|
|
605
|
+
|
|
548
606
|
readonly Builder: BlobBuilder;
|
|
549
607
|
CustomModifiers(): CustomModifiersEncoder;
|
|
550
608
|
Type(isByRef?: boolean): SignatureTypeEncoder;
|
|
@@ -561,6 +619,8 @@ export const ReturnTypeEncoder: {
|
|
|
561
619
|
export type ReturnTypeEncoder = ReturnTypeEncoder$instance;
|
|
562
620
|
|
|
563
621
|
export interface ScalarEncoder$instance {
|
|
622
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ScalarEncoder: never;
|
|
623
|
+
|
|
564
624
|
readonly Builder: BlobBuilder;
|
|
565
625
|
Constant(value: unknown): void;
|
|
566
626
|
NullArray(): void;
|
|
@@ -576,6 +636,8 @@ export const ScalarEncoder: {
|
|
|
576
636
|
export type ScalarEncoder = ScalarEncoder$instance;
|
|
577
637
|
|
|
578
638
|
export interface SignatureDecoder_2$instance<TType, TGenericContext> {
|
|
639
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_SignatureDecoder_2: never;
|
|
640
|
+
|
|
579
641
|
DecodeFieldSignature(blobReader: BlobReader): TType;
|
|
580
642
|
DecodeLocalSignature(blobReader: BlobReader): ImmutableArray_1<TType>;
|
|
581
643
|
DecodeMethodSignature(blobReader: BlobReader): MethodSignature_1<TType>;
|
|
@@ -592,6 +654,8 @@ export const SignatureDecoder_2: {
|
|
|
592
654
|
export type SignatureDecoder_2<TType, TGenericContext> = SignatureDecoder_2$instance<TType, TGenericContext>;
|
|
593
655
|
|
|
594
656
|
export interface SignatureTypeEncoder$instance {
|
|
657
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_SignatureTypeEncoder: never;
|
|
658
|
+
|
|
595
659
|
readonly Builder: BlobBuilder;
|
|
596
660
|
Array(elementType: SignatureTypeEncoder, arrayShape: ArrayShapeEncoder): void;
|
|
597
661
|
Array(elementType: Action_1<SignatureTypeEncoder>, arrayShape: Action_1<ArrayShapeEncoder>): void;
|
|
@@ -633,6 +697,8 @@ export const SignatureTypeEncoder: {
|
|
|
633
697
|
export type SignatureTypeEncoder = SignatureTypeEncoder$instance;
|
|
634
698
|
|
|
635
699
|
export interface SwitchInstructionEncoder$instance {
|
|
700
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_SwitchInstructionEncoder: never;
|
|
701
|
+
|
|
636
702
|
Branch(label: LabelHandle): void;
|
|
637
703
|
}
|
|
638
704
|
|
|
@@ -645,6 +711,8 @@ export const SwitchInstructionEncoder: {
|
|
|
645
711
|
export type SwitchInstructionEncoder = SwitchInstructionEncoder$instance;
|
|
646
712
|
|
|
647
713
|
export interface VectorEncoder$instance {
|
|
714
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_VectorEncoder: never;
|
|
715
|
+
|
|
648
716
|
readonly Builder: BlobBuilder;
|
|
649
717
|
Count(count: int): LiteralsEncoder;
|
|
650
718
|
}
|
|
@@ -658,6 +726,8 @@ export const VectorEncoder: {
|
|
|
658
726
|
export type VectorEncoder = VectorEncoder$instance;
|
|
659
727
|
|
|
660
728
|
export interface ControlFlowBuilder$instance {
|
|
729
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_ControlFlowBuilder: never;
|
|
730
|
+
|
|
661
731
|
AddCatchRegion(tryStart: LabelHandle, tryEnd: LabelHandle, handlerStart: LabelHandle, handlerEnd: LabelHandle, catchType: EntityHandle): void;
|
|
662
732
|
AddFaultRegion(tryStart: LabelHandle, tryEnd: LabelHandle, handlerStart: LabelHandle, handlerEnd: LabelHandle): void;
|
|
663
733
|
AddFilterRegion(tryStart: LabelHandle, tryEnd: LabelHandle, handlerStart: LabelHandle, handlerEnd: LabelHandle, filterStart: LabelHandle): void;
|
|
@@ -674,6 +744,8 @@ export const ControlFlowBuilder: {
|
|
|
674
744
|
export type ControlFlowBuilder = ControlFlowBuilder$instance;
|
|
675
745
|
|
|
676
746
|
export interface MetadataAggregator$instance {
|
|
747
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MetadataAggregator: never;
|
|
748
|
+
|
|
677
749
|
GetGenerationHandle(handle: Handle, generation: int): Handle;
|
|
678
750
|
}
|
|
679
751
|
|
|
@@ -687,6 +759,8 @@ export const MetadataAggregator: {
|
|
|
687
759
|
export type MetadataAggregator = MetadataAggregator$instance;
|
|
688
760
|
|
|
689
761
|
export interface MetadataBuilder$instance {
|
|
762
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MetadataBuilder: never;
|
|
763
|
+
|
|
690
764
|
AddAssembly(name: StringHandle, version: Version, culture: StringHandle, publicKey: BlobHandle, flags: AssemblyFlags, hashAlgorithm: AssemblyHashAlgorithm): AssemblyDefinitionHandle;
|
|
691
765
|
AddAssemblyFile(name: StringHandle, hashValue: BlobHandle, containsMetadata: boolean): AssemblyFileHandle;
|
|
692
766
|
AddAssemblyReference(name: StringHandle, version: Version, culture: StringHandle, publicKeyOrToken: BlobHandle, flags: AssemblyFlags, hashValue: BlobHandle): AssemblyReferenceHandle;
|
|
@@ -758,6 +832,8 @@ export const MetadataBuilder: {
|
|
|
758
832
|
export type MetadataBuilder = MetadataBuilder$instance;
|
|
759
833
|
|
|
760
834
|
export interface MetadataRootBuilder$instance {
|
|
835
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MetadataRootBuilder: never;
|
|
836
|
+
|
|
761
837
|
readonly MetadataVersion: string;
|
|
762
838
|
readonly Sizes: MetadataSizes;
|
|
763
839
|
readonly SuppressValidation: boolean;
|
|
@@ -773,6 +849,8 @@ export const MetadataRootBuilder: {
|
|
|
773
849
|
export type MetadataRootBuilder = MetadataRootBuilder$instance;
|
|
774
850
|
|
|
775
851
|
export interface MetadataSizes$instance {
|
|
852
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_MetadataSizes: never;
|
|
853
|
+
|
|
776
854
|
readonly ExternalRowCounts: ImmutableArray_1<System_Internal.Int32>;
|
|
777
855
|
readonly HeapSizes: ImmutableArray_1<System_Internal.Int32>;
|
|
778
856
|
readonly RowCounts: ImmutableArray_1<System_Internal.Int32>;
|
|
@@ -787,6 +865,8 @@ export const MetadataSizes: {
|
|
|
787
865
|
export type MetadataSizes = MetadataSizes$instance;
|
|
788
866
|
|
|
789
867
|
export interface PortablePdbBuilder$instance {
|
|
868
|
+
readonly __tsonic_type_System_Reflection_Metadata_Ecma335_PortablePdbBuilder: never;
|
|
869
|
+
|
|
790
870
|
readonly FormatVersion: ushort;
|
|
791
871
|
readonly IdProvider: Func_2<IEnumerable_1<Blob>, BlobContentId>;
|
|
792
872
|
readonly MetadataVersion: string;
|
|
@@ -194,6 +194,8 @@ export enum Subsystem {
|
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
export interface CodeViewDebugDirectoryData$instance {
|
|
197
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_CodeViewDebugDirectoryData: never;
|
|
198
|
+
|
|
197
199
|
readonly Age: int;
|
|
198
200
|
readonly Guid: Guid;
|
|
199
201
|
readonly Path: string;
|
|
@@ -208,6 +210,8 @@ export const CodeViewDebugDirectoryData: {
|
|
|
208
210
|
export type CodeViewDebugDirectoryData = CodeViewDebugDirectoryData$instance;
|
|
209
211
|
|
|
210
212
|
export interface DebugDirectoryEntry$instance {
|
|
213
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_DebugDirectoryEntry: never;
|
|
214
|
+
|
|
211
215
|
readonly DataPointer: int;
|
|
212
216
|
readonly DataRelativeVirtualAddress: int;
|
|
213
217
|
readonly DataSize: int;
|
|
@@ -227,6 +231,8 @@ export const DebugDirectoryEntry: {
|
|
|
227
231
|
export type DebugDirectoryEntry = DebugDirectoryEntry$instance;
|
|
228
232
|
|
|
229
233
|
export interface DirectoryEntry$instance {
|
|
234
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_DirectoryEntry: never;
|
|
235
|
+
|
|
230
236
|
readonly RelativeVirtualAddress: int;
|
|
231
237
|
readonly Size: int;
|
|
232
238
|
}
|
|
@@ -240,6 +246,8 @@ export const DirectoryEntry: {
|
|
|
240
246
|
export type DirectoryEntry = DirectoryEntry$instance;
|
|
241
247
|
|
|
242
248
|
export interface PdbChecksumDebugDirectoryData$instance {
|
|
249
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PdbChecksumDebugDirectoryData: never;
|
|
250
|
+
|
|
243
251
|
readonly AlgorithmName: string;
|
|
244
252
|
readonly Checksum: ImmutableArray_1<System_Internal.Byte>;
|
|
245
253
|
}
|
|
@@ -253,6 +261,8 @@ export const PdbChecksumDebugDirectoryData: {
|
|
|
253
261
|
export type PdbChecksumDebugDirectoryData = PdbChecksumDebugDirectoryData$instance;
|
|
254
262
|
|
|
255
263
|
export interface PEMemoryBlock$instance {
|
|
264
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEMemoryBlock: never;
|
|
265
|
+
|
|
256
266
|
readonly Length: int;
|
|
257
267
|
readonly Pointer: ptr<byte>;
|
|
258
268
|
GetContent(): ImmutableArray_1<System_Internal.Byte>;
|
|
@@ -270,6 +280,8 @@ export const PEMemoryBlock: {
|
|
|
270
280
|
export type PEMemoryBlock = PEMemoryBlock$instance;
|
|
271
281
|
|
|
272
282
|
export interface SectionHeader$instance {
|
|
283
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_SectionHeader: never;
|
|
284
|
+
|
|
273
285
|
readonly Name: string;
|
|
274
286
|
readonly NumberOfLineNumbers: ushort;
|
|
275
287
|
readonly NumberOfRelocations: ushort;
|
|
@@ -291,6 +303,8 @@ export const SectionHeader: {
|
|
|
291
303
|
export type SectionHeader = SectionHeader$instance;
|
|
292
304
|
|
|
293
305
|
export interface SectionLocation$instance {
|
|
306
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_SectionLocation: never;
|
|
307
|
+
|
|
294
308
|
readonly PointerToRawData: int;
|
|
295
309
|
readonly RelativeVirtualAddress: int;
|
|
296
310
|
}
|
|
@@ -304,6 +318,8 @@ export const SectionLocation: {
|
|
|
304
318
|
export type SectionLocation = SectionLocation$instance;
|
|
305
319
|
|
|
306
320
|
export interface CoffHeader$instance {
|
|
321
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_CoffHeader: never;
|
|
322
|
+
|
|
307
323
|
readonly Characteristics: Characteristics;
|
|
308
324
|
readonly Machine: Machine;
|
|
309
325
|
readonly NumberOfSections: short;
|
|
@@ -321,6 +337,8 @@ export const CoffHeader: {
|
|
|
321
337
|
export type CoffHeader = CoffHeader$instance;
|
|
322
338
|
|
|
323
339
|
export interface CorHeader$instance {
|
|
340
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_CorHeader: never;
|
|
341
|
+
|
|
324
342
|
readonly CodeManagerTableDirectory: DirectoryEntry;
|
|
325
343
|
readonly EntryPointTokenOrRelativeVirtualAddress: int;
|
|
326
344
|
readonly ExportAddressTableJumpsDirectory: DirectoryEntry;
|
|
@@ -342,6 +360,8 @@ export const CorHeader: {
|
|
|
342
360
|
export type CorHeader = CorHeader$instance;
|
|
343
361
|
|
|
344
362
|
export interface DebugDirectoryBuilder$instance {
|
|
363
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_DebugDirectoryBuilder: never;
|
|
364
|
+
|
|
345
365
|
AddCodeViewEntry(pdbPath: string, pdbContentId: BlobContentId, portablePdbVersion: ushort): void;
|
|
346
366
|
AddCodeViewEntry(pdbPath: string, pdbContentId: BlobContentId, portablePdbVersion: ushort, age: int): void;
|
|
347
367
|
AddEmbeddedPortablePdbEntry(debugMetadata: BlobBuilder, portablePdbVersion: ushort): void;
|
|
@@ -360,6 +380,8 @@ export const DebugDirectoryBuilder: {
|
|
|
360
380
|
export type DebugDirectoryBuilder = DebugDirectoryBuilder$instance;
|
|
361
381
|
|
|
362
382
|
export interface ManagedPEBuilder$instance extends PEBuilder {
|
|
383
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_ManagedPEBuilder: never;
|
|
384
|
+
|
|
363
385
|
CreateSections(): ImmutableArray_1<unknown>;
|
|
364
386
|
GetDirectories(): PEDirectoriesBuilder;
|
|
365
387
|
SerializeSection(name: string, location: SectionLocation): BlobBuilder;
|
|
@@ -377,6 +399,8 @@ export const ManagedPEBuilder: {
|
|
|
377
399
|
export type ManagedPEBuilder = ManagedPEBuilder$instance;
|
|
378
400
|
|
|
379
401
|
export interface PEBuilder$instance {
|
|
402
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEBuilder: never;
|
|
403
|
+
|
|
380
404
|
readonly Header: PEHeaderBuilder;
|
|
381
405
|
readonly IdProvider: Func_2<IEnumerable_1<Blob>, BlobContentId>;
|
|
382
406
|
readonly IsDeterministic: boolean;
|
|
@@ -394,6 +418,8 @@ export const PEBuilder: (abstract new(header: PEHeaderBuilder, deterministicIdPr
|
|
|
394
418
|
export type PEBuilder = PEBuilder$instance;
|
|
395
419
|
|
|
396
420
|
export interface PEDirectoriesBuilder$instance {
|
|
421
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEDirectoriesBuilder: never;
|
|
422
|
+
|
|
397
423
|
AddressOfEntryPoint: int;
|
|
398
424
|
BaseRelocationTable: DirectoryEntry;
|
|
399
425
|
BoundImportTable: DirectoryEntry;
|
|
@@ -420,6 +446,8 @@ export const PEDirectoriesBuilder: {
|
|
|
420
446
|
export type PEDirectoriesBuilder = PEDirectoriesBuilder$instance;
|
|
421
447
|
|
|
422
448
|
export interface PEHeader$instance {
|
|
449
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEHeader: never;
|
|
450
|
+
|
|
423
451
|
readonly AddressOfEntryPoint: int;
|
|
424
452
|
readonly BaseOfCode: int;
|
|
425
453
|
readonly BaseOfData: int;
|
|
@@ -473,6 +501,8 @@ export const PEHeader: {
|
|
|
473
501
|
export type PEHeader = PEHeader$instance;
|
|
474
502
|
|
|
475
503
|
export interface PEHeaderBuilder$instance {
|
|
504
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEHeaderBuilder: never;
|
|
505
|
+
|
|
476
506
|
readonly DllCharacteristics: DllCharacteristics;
|
|
477
507
|
readonly FileAlignment: int;
|
|
478
508
|
readonly ImageBase: ulong;
|
|
@@ -505,6 +535,8 @@ export const PEHeaderBuilder: {
|
|
|
505
535
|
export type PEHeaderBuilder = PEHeaderBuilder$instance;
|
|
506
536
|
|
|
507
537
|
export interface PEHeaders$instance {
|
|
538
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEHeaders: never;
|
|
539
|
+
|
|
508
540
|
readonly CoffHeader: CoffHeader;
|
|
509
541
|
readonly CoffHeaderStartOffset: int;
|
|
510
542
|
readonly CorHeader: CorHeader | undefined;
|
|
@@ -532,7 +564,11 @@ export const PEHeaders: {
|
|
|
532
564
|
|
|
533
565
|
export type PEHeaders = PEHeaders$instance;
|
|
534
566
|
|
|
535
|
-
export interface PEReader$instance {
|
|
567
|
+
export interface PEReader$instance extends System_Internal.IDisposable$instance {
|
|
568
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_PEReader: never;
|
|
569
|
+
|
|
570
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
571
|
+
|
|
536
572
|
readonly HasMetadata: boolean;
|
|
537
573
|
readonly IsEntireImageAvailable: boolean;
|
|
538
574
|
readonly IsLoadedImage: boolean;
|
|
@@ -564,12 +600,12 @@ export interface __PEReader$views {
|
|
|
564
600
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
565
601
|
}
|
|
566
602
|
|
|
567
|
-
export interface PEReader$instance extends System_Internal.IDisposable$instance {}
|
|
568
|
-
|
|
569
603
|
export type PEReader = PEReader$instance & __PEReader$views;
|
|
570
604
|
|
|
571
605
|
|
|
572
606
|
export interface ResourceSectionBuilder$instance {
|
|
607
|
+
readonly __tsonic_type_System_Reflection_PortableExecutable_ResourceSectionBuilder: never;
|
|
608
|
+
|
|
573
609
|
Serialize(builder: BlobBuilder, location: SectionLocation): void;
|
|
574
610
|
}
|
|
575
611
|
|
|
@@ -26,6 +26,8 @@ export enum UltimateResourceFallbackLocation {
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
export interface IResourceReader$instance extends IEnumerable, IDisposable {
|
|
29
|
+
readonly __tsonic_iface_System_Resources_IResourceReader: never;
|
|
30
|
+
|
|
29
31
|
Close(): void;
|
|
30
32
|
GetEnumerator(): IEnumerator;
|
|
31
33
|
GetEnumerator(): IDictionaryEnumerator;
|
|
@@ -33,11 +35,13 @@ export interface IResourceReader$instance extends IEnumerable, IDisposable {
|
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
|
|
36
|
-
export interface IResourceReader$instance extends
|
|
38
|
+
export interface IResourceReader$instance extends System_Internal.IDisposable$instance {}
|
|
37
39
|
|
|
38
40
|
export type IResourceReader = IResourceReader$instance;
|
|
39
41
|
|
|
40
42
|
export interface IResourceWriter$instance extends IDisposable {
|
|
43
|
+
readonly __tsonic_iface_System_Resources_IResourceWriter: never;
|
|
44
|
+
|
|
41
45
|
AddResource(name: string, value: byte[]): void;
|
|
42
46
|
AddResource(name: string, value: unknown): void;
|
|
43
47
|
AddResource(name: string, value: string): void;
|
|
@@ -51,6 +55,10 @@ export interface IResourceWriter$instance extends System_Internal.IDisposable$in
|
|
|
51
55
|
export type IResourceWriter = IResourceWriter$instance;
|
|
52
56
|
|
|
53
57
|
export interface MissingManifestResourceException$instance extends SystemException {
|
|
58
|
+
readonly __tsonic_type_System_Resources_MissingManifestResourceException: never;
|
|
59
|
+
|
|
60
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
61
|
+
|
|
54
62
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
55
63
|
}
|
|
56
64
|
|
|
@@ -70,6 +78,10 @@ export type MissingManifestResourceException = MissingManifestResourceException$
|
|
|
70
78
|
|
|
71
79
|
|
|
72
80
|
export interface MissingSatelliteAssemblyException$instance extends SystemException {
|
|
81
|
+
readonly __tsonic_type_System_Resources_MissingSatelliteAssemblyException: never;
|
|
82
|
+
|
|
83
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
84
|
+
|
|
73
85
|
readonly CultureName: string | undefined;
|
|
74
86
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
75
87
|
}
|
|
@@ -91,6 +103,8 @@ export type MissingSatelliteAssemblyException = MissingSatelliteAssemblyExceptio
|
|
|
91
103
|
|
|
92
104
|
|
|
93
105
|
export interface NeutralResourcesLanguageAttribute$instance extends Attribute {
|
|
106
|
+
readonly __tsonic_type_System_Resources_NeutralResourcesLanguageAttribute: never;
|
|
107
|
+
|
|
94
108
|
readonly CultureName: string;
|
|
95
109
|
readonly Location: UltimateResourceFallbackLocation;
|
|
96
110
|
}
|
|
@@ -105,6 +119,8 @@ export const NeutralResourcesLanguageAttribute: {
|
|
|
105
119
|
export type NeutralResourcesLanguageAttribute = NeutralResourcesLanguageAttribute$instance;
|
|
106
120
|
|
|
107
121
|
export interface ResourceManager$instance {
|
|
122
|
+
readonly __tsonic_type_System_Resources_ResourceManager: never;
|
|
123
|
+
|
|
108
124
|
readonly BaseName: string;
|
|
109
125
|
IgnoreCase: boolean;
|
|
110
126
|
readonly ResourceSetType: Type;
|
|
@@ -136,6 +152,12 @@ export const ResourceManager: {
|
|
|
136
152
|
export type ResourceManager = ResourceManager$instance;
|
|
137
153
|
|
|
138
154
|
export interface ResourceReader$instance {
|
|
155
|
+
readonly __tsonic_type_System_Resources_ResourceReader: never;
|
|
156
|
+
|
|
157
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
158
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
159
|
+
readonly __tsonic_iface_System_Resources_IResourceReader: never;
|
|
160
|
+
|
|
139
161
|
Close(): void;
|
|
140
162
|
Dispose(): void;
|
|
141
163
|
GetEnumerator(): IDictionaryEnumerator;
|
|
@@ -159,6 +181,11 @@ export type ResourceReader = ResourceReader$instance & __ResourceReader$views;
|
|
|
159
181
|
|
|
160
182
|
|
|
161
183
|
export interface ResourceSet$instance {
|
|
184
|
+
readonly __tsonic_type_System_Resources_ResourceSet: never;
|
|
185
|
+
|
|
186
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
187
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
188
|
+
|
|
162
189
|
Close(): void;
|
|
163
190
|
Dispose(disposing: boolean): void;
|
|
164
191
|
Dispose(): void;
|
|
@@ -189,6 +216,11 @@ export type ResourceSet = ResourceSet$instance & __ResourceSet$views;
|
|
|
189
216
|
|
|
190
217
|
|
|
191
218
|
export interface ResourceWriter$instance {
|
|
219
|
+
readonly __tsonic_type_System_Resources_ResourceWriter: never;
|
|
220
|
+
|
|
221
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
222
|
+
readonly __tsonic_iface_System_Resources_IResourceWriter: never;
|
|
223
|
+
|
|
192
224
|
get TypeNameConverter(): Func_2<Type, System_Internal.String> | undefined;
|
|
193
225
|
set TypeNameConverter(value: Func_2<Type, System_Internal.String> | undefined);
|
|
194
226
|
AddResource(name: string, value: Stream): void;
|
|
@@ -218,6 +250,8 @@ export type ResourceWriter = ResourceWriter$instance & __ResourceWriter$views;
|
|
|
218
250
|
|
|
219
251
|
|
|
220
252
|
export interface SatelliteContractVersionAttribute$instance extends Attribute {
|
|
253
|
+
readonly __tsonic_type_System_Resources_SatelliteContractVersionAttribute: never;
|
|
254
|
+
|
|
221
255
|
readonly Version: string;
|
|
222
256
|
}
|
|
223
257
|
|
|
@@ -31,7 +31,11 @@ export enum GCLatencyMode {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
export interface DependentHandle$instance {
|
|
34
|
+
export interface DependentHandle$instance extends System_Internal.IDisposable$instance {
|
|
35
|
+
readonly __tsonic_type_System_Runtime_DependentHandle: never;
|
|
36
|
+
|
|
37
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
38
|
+
|
|
35
39
|
get Dependent(): unknown | undefined;
|
|
36
40
|
set Dependent(value: unknown | undefined);
|
|
37
41
|
readonly IsAllocated: boolean;
|
|
@@ -51,12 +55,14 @@ export interface __DependentHandle$views {
|
|
|
51
55
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
52
56
|
}
|
|
53
57
|
|
|
54
|
-
export interface DependentHandle$instance extends System_Internal.IDisposable$instance {}
|
|
55
|
-
|
|
56
58
|
export type DependentHandle = DependentHandle$instance & __DependentHandle$views;
|
|
57
59
|
|
|
58
60
|
|
|
59
61
|
export interface AmbiguousImplementationException$instance extends Exception {
|
|
62
|
+
readonly __tsonic_type_System_Runtime_AmbiguousImplementationException: never;
|
|
63
|
+
|
|
64
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
65
|
+
|
|
60
66
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
61
67
|
}
|
|
62
68
|
|
|
@@ -76,6 +82,8 @@ export type AmbiguousImplementationException = AmbiguousImplementationException$
|
|
|
76
82
|
|
|
77
83
|
|
|
78
84
|
export interface AssemblyTargetedPatchBandAttribute$instance extends Attribute {
|
|
85
|
+
readonly __tsonic_type_System_Runtime_AssemblyTargetedPatchBandAttribute: never;
|
|
86
|
+
|
|
79
87
|
readonly TargetedPatchBand: string;
|
|
80
88
|
}
|
|
81
89
|
|
|
@@ -87,7 +95,11 @@ export const AssemblyTargetedPatchBandAttribute: {
|
|
|
87
95
|
|
|
88
96
|
export type AssemblyTargetedPatchBandAttribute = AssemblyTargetedPatchBandAttribute$instance;
|
|
89
97
|
|
|
90
|
-
export interface MemoryFailPoint$instance extends CriticalFinalizerObject {
|
|
98
|
+
export interface MemoryFailPoint$instance extends CriticalFinalizerObject, System_Internal.IDisposable$instance {
|
|
99
|
+
readonly __tsonic_type_System_Runtime_MemoryFailPoint: never;
|
|
100
|
+
|
|
101
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
102
|
+
|
|
91
103
|
Dispose(): void;
|
|
92
104
|
Finalize(): void;
|
|
93
105
|
}
|
|
@@ -102,12 +114,12 @@ export interface __MemoryFailPoint$views {
|
|
|
102
114
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
103
115
|
}
|
|
104
116
|
|
|
105
|
-
export interface MemoryFailPoint$instance extends System_Internal.IDisposable$instance {}
|
|
106
|
-
|
|
107
117
|
export type MemoryFailPoint = MemoryFailPoint$instance & __MemoryFailPoint$views;
|
|
108
118
|
|
|
109
119
|
|
|
110
120
|
export interface TargetedPatchingOptOutAttribute$instance extends Attribute {
|
|
121
|
+
readonly __tsonic_type_System_Runtime_TargetedPatchingOptOutAttribute: never;
|
|
122
|
+
|
|
111
123
|
readonly Reason: string;
|
|
112
124
|
}
|
|
113
125
|
|