@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
|
@@ -75,6 +75,8 @@ export type TransactionStartedEventHandler = (sender: unknown, e: TransactionEve
|
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
export interface IDtcTransaction$instance {
|
|
78
|
+
readonly __tsonic_iface_System_Transactions_IDtcTransaction: never;
|
|
79
|
+
|
|
78
80
|
Abort(reason: nint, retaining: int, async: int): void;
|
|
79
81
|
Commit(retaining: int, commitType: int, reserved: int): void;
|
|
80
82
|
GetTransactionInfo(transactionInformation: nint): void;
|
|
@@ -84,6 +86,8 @@ export interface IDtcTransaction$instance {
|
|
|
84
86
|
export type IDtcTransaction = IDtcTransaction$instance;
|
|
85
87
|
|
|
86
88
|
export interface IEnlistmentNotification$instance {
|
|
89
|
+
readonly __tsonic_iface_System_Transactions_IEnlistmentNotification: never;
|
|
90
|
+
|
|
87
91
|
Commit(enlistment: Enlistment): void;
|
|
88
92
|
Prepare(preparingEnlistment: PreparingEnlistment): void;
|
|
89
93
|
}
|
|
@@ -92,6 +96,8 @@ export interface IEnlistmentNotification$instance {
|
|
|
92
96
|
export type IEnlistmentNotification = IEnlistmentNotification$instance;
|
|
93
97
|
|
|
94
98
|
export interface IPromotableSinglePhaseNotification$instance extends ITransactionPromoter {
|
|
99
|
+
readonly __tsonic_iface_System_Transactions_IPromotableSinglePhaseNotification: never;
|
|
100
|
+
|
|
95
101
|
Initialize(): void;
|
|
96
102
|
Promote(): byte[] | undefined;
|
|
97
103
|
SinglePhaseCommit(singlePhaseEnlistment: SinglePhaseEnlistment): void;
|
|
@@ -103,6 +109,8 @@ export interface IPromotableSinglePhaseNotification$instance extends ITransactio
|
|
|
103
109
|
export type IPromotableSinglePhaseNotification = IPromotableSinglePhaseNotification$instance;
|
|
104
110
|
|
|
105
111
|
export interface ISimpleTransactionSuperior$instance extends ITransactionPromoter {
|
|
112
|
+
readonly __tsonic_iface_System_Transactions_ISimpleTransactionSuperior: never;
|
|
113
|
+
|
|
106
114
|
Promote(): byte[] | undefined;
|
|
107
115
|
Rollback(): void;
|
|
108
116
|
}
|
|
@@ -113,6 +121,8 @@ export interface ISimpleTransactionSuperior$instance extends ITransactionPromote
|
|
|
113
121
|
export type ISimpleTransactionSuperior = ISimpleTransactionSuperior$instance;
|
|
114
122
|
|
|
115
123
|
export interface ISinglePhaseNotification$instance extends IEnlistmentNotification {
|
|
124
|
+
readonly __tsonic_iface_System_Transactions_ISinglePhaseNotification: never;
|
|
125
|
+
|
|
116
126
|
Commit(enlistment: Enlistment): void;
|
|
117
127
|
Prepare(preparingEnlistment: PreparingEnlistment): void;
|
|
118
128
|
SinglePhaseCommit(singlePhaseEnlistment: SinglePhaseEnlistment): void;
|
|
@@ -124,6 +134,8 @@ export interface ISinglePhaseNotification$instance extends IEnlistmentNotificati
|
|
|
124
134
|
export type ISinglePhaseNotification = ISinglePhaseNotification$instance;
|
|
125
135
|
|
|
126
136
|
export interface ITransactionPromoter$instance {
|
|
137
|
+
readonly __tsonic_iface_System_Transactions_ITransactionPromoter: never;
|
|
138
|
+
|
|
127
139
|
Promote(): byte[] | undefined;
|
|
128
140
|
}
|
|
129
141
|
|
|
@@ -131,6 +143,10 @@ export interface ITransactionPromoter$instance {
|
|
|
131
143
|
export type ITransactionPromoter = ITransactionPromoter$instance;
|
|
132
144
|
|
|
133
145
|
export interface TransactionOptions$instance {
|
|
146
|
+
readonly __tsonic_type_System_Transactions_TransactionOptions: never;
|
|
147
|
+
|
|
148
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
149
|
+
|
|
134
150
|
IsolationLevel: IsolationLevel;
|
|
135
151
|
Timeout: TimeSpan;
|
|
136
152
|
Equals(obj: unknown): boolean;
|
|
@@ -154,7 +170,13 @@ export interface __TransactionOptions$views {
|
|
|
154
170
|
export type TransactionOptions = TransactionOptions$instance & __TransactionOptions$views;
|
|
155
171
|
|
|
156
172
|
|
|
157
|
-
export interface CommittableTransaction$instance extends Transaction$instance {
|
|
173
|
+
export interface CommittableTransaction$instance extends Transaction$instance, System_Internal.IAsyncResult$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
174
|
+
readonly __tsonic_type_System_Transactions_CommittableTransaction: never;
|
|
175
|
+
|
|
176
|
+
readonly __tsonic_iface_System_IAsyncResult: never;
|
|
177
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
178
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
179
|
+
|
|
158
180
|
BeginCommit(asyncCallback: AsyncCallback, asyncState: unknown): IAsyncResult;
|
|
159
181
|
Commit(): void;
|
|
160
182
|
Dispose(): void;
|
|
@@ -176,12 +198,15 @@ export interface __CommittableTransaction$views {
|
|
|
176
198
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
177
199
|
}
|
|
178
200
|
|
|
179
|
-
export interface CommittableTransaction$instance extends System_Internal.IAsyncResult$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
180
|
-
|
|
181
201
|
export type CommittableTransaction = CommittableTransaction$instance & __CommittableTransaction$views;
|
|
182
202
|
|
|
183
203
|
|
|
184
|
-
export interface DependentTransaction$instance extends Transaction$instance {
|
|
204
|
+
export interface DependentTransaction$instance extends Transaction$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
205
|
+
readonly __tsonic_type_System_Transactions_DependentTransaction: never;
|
|
206
|
+
|
|
207
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
208
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
209
|
+
|
|
185
210
|
Complete(): void;
|
|
186
211
|
Dispose(): void;
|
|
187
212
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -197,12 +222,12 @@ export interface __DependentTransaction$views {
|
|
|
197
222
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
198
223
|
}
|
|
199
224
|
|
|
200
|
-
export interface DependentTransaction$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
201
|
-
|
|
202
225
|
export type DependentTransaction = DependentTransaction$instance & __DependentTransaction$views;
|
|
203
226
|
|
|
204
227
|
|
|
205
228
|
export interface Enlistment$instance {
|
|
229
|
+
readonly __tsonic_type_System_Transactions_Enlistment: never;
|
|
230
|
+
|
|
206
231
|
Done(): void;
|
|
207
232
|
}
|
|
208
233
|
|
|
@@ -214,6 +239,8 @@ export const Enlistment: {
|
|
|
214
239
|
export type Enlistment = Enlistment$instance;
|
|
215
240
|
|
|
216
241
|
export interface PreparingEnlistment$instance extends Enlistment {
|
|
242
|
+
readonly __tsonic_type_System_Transactions_PreparingEnlistment: never;
|
|
243
|
+
|
|
217
244
|
ForceRollback(): void;
|
|
218
245
|
ForceRollback(e: Exception): void;
|
|
219
246
|
Prepared(): void;
|
|
@@ -228,6 +255,8 @@ export const PreparingEnlistment: {
|
|
|
228
255
|
export type PreparingEnlistment = PreparingEnlistment$instance;
|
|
229
256
|
|
|
230
257
|
export interface SinglePhaseEnlistment$instance extends Enlistment {
|
|
258
|
+
readonly __tsonic_type_System_Transactions_SinglePhaseEnlistment: never;
|
|
259
|
+
|
|
231
260
|
Aborted(): void;
|
|
232
261
|
Aborted(e: Exception): void;
|
|
233
262
|
Committed(): void;
|
|
@@ -242,7 +271,12 @@ export const SinglePhaseEnlistment: {
|
|
|
242
271
|
|
|
243
272
|
export type SinglePhaseEnlistment = SinglePhaseEnlistment$instance;
|
|
244
273
|
|
|
245
|
-
export interface SubordinateTransaction$instance extends Transaction$instance {
|
|
274
|
+
export interface SubordinateTransaction$instance extends Transaction$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
275
|
+
readonly __tsonic_type_System_Transactions_SubordinateTransaction: never;
|
|
276
|
+
|
|
277
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
278
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
279
|
+
|
|
246
280
|
Dispose(): void;
|
|
247
281
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
248
282
|
}
|
|
@@ -258,12 +292,15 @@ export interface __SubordinateTransaction$views {
|
|
|
258
292
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
259
293
|
}
|
|
260
294
|
|
|
261
|
-
export interface SubordinateTransaction$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
262
|
-
|
|
263
295
|
export type SubordinateTransaction = SubordinateTransaction$instance & __SubordinateTransaction$views;
|
|
264
296
|
|
|
265
297
|
|
|
266
|
-
export interface Transaction$instance {
|
|
298
|
+
export interface Transaction$instance extends System_Internal.IDisposable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
299
|
+
readonly __tsonic_type_System_Transactions_Transaction: never;
|
|
300
|
+
|
|
301
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
302
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
303
|
+
|
|
267
304
|
readonly IsolationLevel: IsolationLevel;
|
|
268
305
|
readonly PromoterType: Guid;
|
|
269
306
|
readonly TransactionInformation: TransactionInformation;
|
|
@@ -297,12 +334,14 @@ export interface __Transaction$views {
|
|
|
297
334
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
298
335
|
}
|
|
299
336
|
|
|
300
|
-
export interface Transaction$instance extends System_Internal.IDisposable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
301
|
-
|
|
302
337
|
export type Transaction = Transaction$instance & __Transaction$views;
|
|
303
338
|
|
|
304
339
|
|
|
305
340
|
export interface TransactionAbortedException$instance extends TransactionException$instance {
|
|
341
|
+
readonly __tsonic_type_System_Transactions_TransactionAbortedException: never;
|
|
342
|
+
|
|
343
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
344
|
+
|
|
306
345
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
307
346
|
}
|
|
308
347
|
|
|
@@ -322,6 +361,8 @@ export type TransactionAbortedException = TransactionAbortedException$instance &
|
|
|
322
361
|
|
|
323
362
|
|
|
324
363
|
export interface TransactionEventArgs$instance extends EventArgs {
|
|
364
|
+
readonly __tsonic_type_System_Transactions_TransactionEventArgs: never;
|
|
365
|
+
|
|
325
366
|
readonly Transaction: Transaction | undefined;
|
|
326
367
|
}
|
|
327
368
|
|
|
@@ -334,6 +375,10 @@ export const TransactionEventArgs: {
|
|
|
334
375
|
export type TransactionEventArgs = TransactionEventArgs$instance;
|
|
335
376
|
|
|
336
377
|
export interface TransactionException$instance extends SystemException {
|
|
378
|
+
readonly __tsonic_type_System_Transactions_TransactionException: never;
|
|
379
|
+
|
|
380
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
381
|
+
|
|
337
382
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
338
383
|
}
|
|
339
384
|
|
|
@@ -353,6 +398,10 @@ export type TransactionException = TransactionException$instance & __Transaction
|
|
|
353
398
|
|
|
354
399
|
|
|
355
400
|
export interface TransactionInDoubtException$instance extends TransactionException$instance {
|
|
401
|
+
readonly __tsonic_type_System_Transactions_TransactionInDoubtException: never;
|
|
402
|
+
|
|
403
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
404
|
+
|
|
356
405
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
357
406
|
}
|
|
358
407
|
|
|
@@ -372,6 +421,8 @@ export type TransactionInDoubtException = TransactionInDoubtException$instance &
|
|
|
372
421
|
|
|
373
422
|
|
|
374
423
|
export interface TransactionInformation$instance {
|
|
424
|
+
readonly __tsonic_type_System_Transactions_TransactionInformation: never;
|
|
425
|
+
|
|
375
426
|
readonly CreationTime: DateTime;
|
|
376
427
|
readonly DistributedIdentifier: Guid;
|
|
377
428
|
readonly LocalIdentifier: string;
|
|
@@ -386,6 +437,10 @@ export const TransactionInformation: {
|
|
|
386
437
|
export type TransactionInformation = TransactionInformation$instance;
|
|
387
438
|
|
|
388
439
|
export interface TransactionManagerCommunicationException$instance extends TransactionException$instance {
|
|
440
|
+
readonly __tsonic_type_System_Transactions_TransactionManagerCommunicationException: never;
|
|
441
|
+
|
|
442
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
443
|
+
|
|
389
444
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
390
445
|
}
|
|
391
446
|
|
|
@@ -405,6 +460,10 @@ export type TransactionManagerCommunicationException = TransactionManagerCommuni
|
|
|
405
460
|
|
|
406
461
|
|
|
407
462
|
export interface TransactionPromotionException$instance extends TransactionException$instance {
|
|
463
|
+
readonly __tsonic_type_System_Transactions_TransactionPromotionException: never;
|
|
464
|
+
|
|
465
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
466
|
+
|
|
408
467
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
409
468
|
}
|
|
410
469
|
|
|
@@ -423,7 +482,11 @@ export interface __TransactionPromotionException$views {
|
|
|
423
482
|
export type TransactionPromotionException = TransactionPromotionException$instance & __TransactionPromotionException$views;
|
|
424
483
|
|
|
425
484
|
|
|
426
|
-
export interface TransactionScope$instance {
|
|
485
|
+
export interface TransactionScope$instance extends System_Internal.IDisposable$instance {
|
|
486
|
+
readonly __tsonic_type_System_Transactions_TransactionScope: never;
|
|
487
|
+
|
|
488
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
489
|
+
|
|
427
490
|
Complete(): void;
|
|
428
491
|
Dispose(): void;
|
|
429
492
|
}
|
|
@@ -451,8 +514,6 @@ export interface __TransactionScope$views {
|
|
|
451
514
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
452
515
|
}
|
|
453
516
|
|
|
454
|
-
export interface TransactionScope$instance extends System_Internal.IDisposable$instance {}
|
|
455
|
-
|
|
456
517
|
export type TransactionScope = TransactionScope$instance & __TransactionScope$views;
|
|
457
518
|
|
|
458
519
|
|
|
@@ -13,6 +13,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
13
13
|
import type { Boolean as ClrBoolean, Byte, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
14
14
|
|
|
15
15
|
export interface IHtmlString$instance {
|
|
16
|
+
readonly __tsonic_iface_System_Web_IHtmlString: never;
|
|
17
|
+
|
|
16
18
|
ToHtmlString(): string | undefined;
|
|
17
19
|
}
|
|
18
20
|
|
|
@@ -20,6 +22,8 @@ export interface IHtmlString$instance {
|
|
|
20
22
|
export type IHtmlString = IHtmlString$instance;
|
|
21
23
|
|
|
22
24
|
export interface HttpUtility$instance {
|
|
25
|
+
readonly __tsonic_type_System_Web_HttpUtility: never;
|
|
26
|
+
|
|
23
27
|
}
|
|
24
28
|
|
|
25
29
|
|
|
@@ -10,6 +10,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
10
10
|
import type { Boolean as ClrBoolean, EventHandler, Object as ClrObject, Void } from "../../System/internal/index.js";
|
|
11
11
|
|
|
12
12
|
export interface ICommand$instance {
|
|
13
|
+
readonly __tsonic_iface_System_Windows_Input_ICommand: never;
|
|
14
|
+
|
|
13
15
|
CanExecute(parameter: unknown): boolean;
|
|
14
16
|
Execute(parameter: unknown): void;
|
|
15
17
|
}
|
|
@@ -10,6 +10,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
10
10
|
import type { Attribute, Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
11
11
|
|
|
12
12
|
export interface ValueSerializerAttribute$instance extends Attribute {
|
|
13
|
+
readonly __tsonic_type_System_Windows_Markup_ValueSerializerAttribute: never;
|
|
14
|
+
|
|
13
15
|
readonly ValueSerializerType: Type;
|
|
14
16
|
readonly ValueSerializerTypeName: string;
|
|
15
17
|
}
|