@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
|
@@ -203,6 +203,8 @@ export type SampleActivity_1<T> = (options: ActivityCreationOptions_1<T>) => Act
|
|
|
203
203
|
|
|
204
204
|
|
|
205
205
|
export interface Activity_Enumerator_1$instance<T> {
|
|
206
|
+
readonly __tsonic_type_System_Diagnostics_Activity_Enumerator_1: never;
|
|
207
|
+
|
|
206
208
|
readonly Current: T;
|
|
207
209
|
GetEnumerator(): Activity_Enumerator_1<T>;
|
|
208
210
|
MoveNext(): boolean;
|
|
@@ -217,6 +219,8 @@ export const Activity_Enumerator_1: {
|
|
|
217
219
|
export type Activity_Enumerator_1<T> = Activity_Enumerator_1$instance<T>;
|
|
218
220
|
|
|
219
221
|
export interface ActivityChangedEventArgs$instance {
|
|
222
|
+
readonly __tsonic_type_System_Diagnostics_ActivityChangedEventArgs: never;
|
|
223
|
+
|
|
220
224
|
get Current(): Activity | undefined;
|
|
221
225
|
set Current(value: Activity | undefined);
|
|
222
226
|
get Previous(): Activity | undefined;
|
|
@@ -232,6 +236,8 @@ export const ActivityChangedEventArgs: {
|
|
|
232
236
|
export type ActivityChangedEventArgs = ActivityChangedEventArgs$instance;
|
|
233
237
|
|
|
234
238
|
export interface ActivityContext$instance {
|
|
239
|
+
readonly __tsonic_type_System_Diagnostics_ActivityContext: never;
|
|
240
|
+
|
|
235
241
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
236
242
|
|
|
237
243
|
readonly IsRemote: boolean;
|
|
@@ -264,6 +270,8 @@ export type ActivityContext = ActivityContext$instance & __ActivityContext$views
|
|
|
264
270
|
|
|
265
271
|
|
|
266
272
|
export interface ActivityCreationOptions_1$instance<T> {
|
|
273
|
+
readonly __tsonic_type_System_Diagnostics_ActivityCreationOptions_1: never;
|
|
274
|
+
|
|
267
275
|
readonly Kind: ActivityKind;
|
|
268
276
|
readonly Links: IEnumerable_1<ActivityLink> | undefined;
|
|
269
277
|
readonly Name: string;
|
|
@@ -285,6 +293,8 @@ export const ActivityCreationOptions_1: {
|
|
|
285
293
|
export type ActivityCreationOptions_1<T> = ActivityCreationOptions_1$instance<T>;
|
|
286
294
|
|
|
287
295
|
export interface ActivityEvent$instance {
|
|
296
|
+
readonly __tsonic_type_System_Diagnostics_ActivityEvent: never;
|
|
297
|
+
|
|
288
298
|
readonly Name: string;
|
|
289
299
|
readonly Tags: IEnumerable_1<KeyValuePair_2<System_Internal.String, unknown>>;
|
|
290
300
|
readonly Timestamp: DateTimeOffset;
|
|
@@ -301,6 +311,8 @@ export const ActivityEvent: {
|
|
|
301
311
|
export type ActivityEvent = ActivityEvent$instance;
|
|
302
312
|
|
|
303
313
|
export interface ActivityLink$instance {
|
|
314
|
+
readonly __tsonic_type_System_Diagnostics_ActivityLink: never;
|
|
315
|
+
|
|
304
316
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
305
317
|
|
|
306
318
|
readonly Context: ActivityContext;
|
|
@@ -328,6 +340,8 @@ export type ActivityLink = ActivityLink$instance & __ActivityLink$views;
|
|
|
328
340
|
|
|
329
341
|
|
|
330
342
|
export interface ActivitySpanId$instance {
|
|
343
|
+
readonly __tsonic_type_System_Diagnostics_ActivitySpanId: never;
|
|
344
|
+
|
|
331
345
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
332
346
|
|
|
333
347
|
CopyTo(destination: Span_1<System_Internal.Byte>): void;
|
|
@@ -359,6 +373,8 @@ export type ActivitySpanId = ActivitySpanId$instance & __ActivitySpanId$views;
|
|
|
359
373
|
|
|
360
374
|
|
|
361
375
|
export interface ActivityTagsCollection_Enumerator$instance extends IDisposable {
|
|
376
|
+
readonly __tsonic_type_System_Diagnostics_ActivityTagsCollection_Enumerator: never;
|
|
377
|
+
|
|
362
378
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
363
379
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
364
380
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -384,6 +400,8 @@ export type ActivityTagsCollection_Enumerator = ActivityTagsCollection_Enumerato
|
|
|
384
400
|
|
|
385
401
|
|
|
386
402
|
export interface ActivityTraceId$instance {
|
|
403
|
+
readonly __tsonic_type_System_Diagnostics_ActivityTraceId: never;
|
|
404
|
+
|
|
387
405
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
388
406
|
|
|
389
407
|
CopyTo(destination: Span_1<System_Internal.Byte>): void;
|
|
@@ -415,6 +433,8 @@ export type ActivityTraceId = ActivityTraceId$instance & __ActivityTraceId$views
|
|
|
415
433
|
|
|
416
434
|
|
|
417
435
|
export interface Debug_AssertInterpolatedStringHandler$instance {
|
|
436
|
+
readonly __tsonic_type_System_Diagnostics_Debug_AssertInterpolatedStringHandler: never;
|
|
437
|
+
|
|
418
438
|
AppendFormatted<T>(value: T): void;
|
|
419
439
|
AppendFormatted<T>(value: T, format: string): void;
|
|
420
440
|
AppendFormatted<T>(value: T, alignment: int): void;
|
|
@@ -436,6 +456,8 @@ export const Debug_AssertInterpolatedStringHandler: {
|
|
|
436
456
|
export type Debug_AssertInterpolatedStringHandler = Debug_AssertInterpolatedStringHandler$instance;
|
|
437
457
|
|
|
438
458
|
export interface Debug_WriteIfInterpolatedStringHandler$instance {
|
|
459
|
+
readonly __tsonic_type_System_Diagnostics_Debug_WriteIfInterpolatedStringHandler: never;
|
|
460
|
+
|
|
439
461
|
AppendFormatted<T>(value: T): void;
|
|
440
462
|
AppendFormatted<T>(value: T, format: string): void;
|
|
441
463
|
AppendFormatted<T>(value: T, alignment: int): void;
|
|
@@ -457,6 +479,8 @@ export const Debug_WriteIfInterpolatedStringHandler: {
|
|
|
457
479
|
export type Debug_WriteIfInterpolatedStringHandler = Debug_WriteIfInterpolatedStringHandler$instance;
|
|
458
480
|
|
|
459
481
|
export interface TagList$instance {
|
|
482
|
+
readonly __tsonic_type_System_Diagnostics_TagList: never;
|
|
483
|
+
|
|
460
484
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
461
485
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
462
486
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -498,6 +522,8 @@ export type TagList = TagList$instance & __TagList$views;
|
|
|
498
522
|
|
|
499
523
|
|
|
500
524
|
export interface TagList_Enumerator$instance extends IDisposable {
|
|
525
|
+
readonly __tsonic_type_System_Diagnostics_TagList_Enumerator: never;
|
|
526
|
+
|
|
501
527
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
502
528
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
503
529
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -523,6 +549,8 @@ export type TagList_Enumerator = TagList_Enumerator$instance & __TagList_Enumera
|
|
|
523
549
|
|
|
524
550
|
|
|
525
551
|
export interface Activity$instance {
|
|
552
|
+
readonly __tsonic_type_System_Diagnostics_Activity: never;
|
|
553
|
+
|
|
526
554
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
527
555
|
|
|
528
556
|
ActivityTraceFlags: ActivityTraceFlags;
|
|
@@ -601,7 +629,9 @@ export interface __Activity$views {
|
|
|
601
629
|
export type Activity = Activity$instance & __Activity$views;
|
|
602
630
|
|
|
603
631
|
|
|
604
|
-
export interface ActivityListener$instance {
|
|
632
|
+
export interface ActivityListener$instance extends System_Internal.IDisposable$instance {
|
|
633
|
+
readonly __tsonic_type_System_Diagnostics_ActivityListener: never;
|
|
634
|
+
|
|
605
635
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
606
636
|
|
|
607
637
|
get ActivityStarted(): Action_1<Activity> | undefined;
|
|
@@ -629,12 +659,12 @@ export interface __ActivityListener$views {
|
|
|
629
659
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
630
660
|
}
|
|
631
661
|
|
|
632
|
-
export interface ActivityListener$instance extends System_Internal.IDisposable$instance {}
|
|
633
|
-
|
|
634
662
|
export type ActivityListener = ActivityListener$instance & __ActivityListener$views;
|
|
635
663
|
|
|
636
664
|
|
|
637
|
-
export interface ActivitySource$instance {
|
|
665
|
+
export interface ActivitySource$instance extends System_Internal.IDisposable$instance {
|
|
666
|
+
readonly __tsonic_type_System_Diagnostics_ActivitySource: never;
|
|
667
|
+
|
|
638
668
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
639
669
|
|
|
640
670
|
readonly Name: string;
|
|
@@ -666,12 +696,12 @@ export interface __ActivitySource$views {
|
|
|
666
696
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
667
697
|
}
|
|
668
698
|
|
|
669
|
-
export interface ActivitySource$instance extends System_Internal.IDisposable$instance {}
|
|
670
|
-
|
|
671
699
|
export type ActivitySource = ActivitySource$instance & __ActivitySource$views;
|
|
672
700
|
|
|
673
701
|
|
|
674
702
|
export interface ActivitySourceOptions$instance {
|
|
703
|
+
readonly __tsonic_type_System_Diagnostics_ActivitySourceOptions: never;
|
|
704
|
+
|
|
675
705
|
Name: string;
|
|
676
706
|
get Tags(): IEnumerable_1<KeyValuePair_2<System_Internal.String, unknown>> | undefined;
|
|
677
707
|
set Tags(value: IEnumerable_1<KeyValuePair_2<System_Internal.String, unknown>> | undefined);
|
|
@@ -690,6 +720,8 @@ export const ActivitySourceOptions: {
|
|
|
690
720
|
export type ActivitySourceOptions = ActivitySourceOptions$instance;
|
|
691
721
|
|
|
692
722
|
export interface ActivityTagsCollection$instance {
|
|
723
|
+
readonly __tsonic_type_System_Diagnostics_ActivityTagsCollection: never;
|
|
724
|
+
|
|
693
725
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
694
726
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
695
727
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -730,6 +762,8 @@ export type ActivityTagsCollection = ActivityTagsCollection$instance & __Activit
|
|
|
730
762
|
|
|
731
763
|
|
|
732
764
|
export interface BooleanSwitch$instance extends Switch {
|
|
765
|
+
readonly __tsonic_type_System_Diagnostics_BooleanSwitch: never;
|
|
766
|
+
|
|
733
767
|
Enabled: boolean;
|
|
734
768
|
OnValueChanged(): void;
|
|
735
769
|
}
|
|
@@ -744,6 +778,8 @@ export const BooleanSwitch: {
|
|
|
744
778
|
export type BooleanSwitch = BooleanSwitch$instance;
|
|
745
779
|
|
|
746
780
|
export interface ConditionalAttribute$instance extends Attribute {
|
|
781
|
+
readonly __tsonic_type_System_Diagnostics_ConditionalAttribute: never;
|
|
782
|
+
|
|
747
783
|
readonly ConditionString: string;
|
|
748
784
|
}
|
|
749
785
|
|
|
@@ -756,6 +792,8 @@ export const ConditionalAttribute: {
|
|
|
756
792
|
export type ConditionalAttribute = ConditionalAttribute$instance;
|
|
757
793
|
|
|
758
794
|
export interface ConsoleTraceListener$instance extends TextWriterTraceListener$instance {
|
|
795
|
+
readonly __tsonic_type_System_Diagnostics_ConsoleTraceListener: never;
|
|
796
|
+
|
|
759
797
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
760
798
|
|
|
761
799
|
Close(): void;
|
|
@@ -778,6 +816,8 @@ export type ConsoleTraceListener = ConsoleTraceListener$instance & __ConsoleTrac
|
|
|
778
816
|
|
|
779
817
|
|
|
780
818
|
export interface CorrelationManager$instance {
|
|
819
|
+
readonly __tsonic_type_System_Diagnostics_CorrelationManager: never;
|
|
820
|
+
|
|
781
821
|
ActivityId: Guid;
|
|
782
822
|
readonly LogicalOperationStack: Stack;
|
|
783
823
|
StartLogicalOperation(): void;
|
|
@@ -793,6 +833,8 @@ export const CorrelationManager: {
|
|
|
793
833
|
export type CorrelationManager = CorrelationManager$instance;
|
|
794
834
|
|
|
795
835
|
export interface DataReceivedEventArgs$instance extends EventArgs {
|
|
836
|
+
readonly __tsonic_type_System_Diagnostics_DataReceivedEventArgs: never;
|
|
837
|
+
|
|
796
838
|
readonly Data: string | undefined;
|
|
797
839
|
}
|
|
798
840
|
|
|
@@ -804,6 +846,8 @@ export const DataReceivedEventArgs: {
|
|
|
804
846
|
export type DataReceivedEventArgs = DataReceivedEventArgs$instance;
|
|
805
847
|
|
|
806
848
|
export interface DebuggableAttribute$instance extends Attribute {
|
|
849
|
+
readonly __tsonic_type_System_Diagnostics_DebuggableAttribute: never;
|
|
850
|
+
|
|
807
851
|
readonly DebuggingFlags: DebuggableAttribute_DebuggingModes;
|
|
808
852
|
readonly IsJITOptimizerDisabled: boolean;
|
|
809
853
|
readonly IsJITTrackingEnabled: boolean;
|
|
@@ -819,6 +863,8 @@ export const DebuggableAttribute: {
|
|
|
819
863
|
export type DebuggableAttribute = DebuggableAttribute$instance;
|
|
820
864
|
|
|
821
865
|
export interface DebuggerBrowsableAttribute$instance extends Attribute {
|
|
866
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerBrowsableAttribute: never;
|
|
867
|
+
|
|
822
868
|
readonly State: DebuggerBrowsableState;
|
|
823
869
|
}
|
|
824
870
|
|
|
@@ -831,6 +877,8 @@ export const DebuggerBrowsableAttribute: {
|
|
|
831
877
|
export type DebuggerBrowsableAttribute = DebuggerBrowsableAttribute$instance;
|
|
832
878
|
|
|
833
879
|
export interface DebuggerDisableUserUnhandledExceptionsAttribute$instance extends Attribute {
|
|
880
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerDisableUserUnhandledExceptionsAttribute: never;
|
|
881
|
+
|
|
834
882
|
}
|
|
835
883
|
|
|
836
884
|
|
|
@@ -842,6 +890,8 @@ export const DebuggerDisableUserUnhandledExceptionsAttribute: {
|
|
|
842
890
|
export type DebuggerDisableUserUnhandledExceptionsAttribute = DebuggerDisableUserUnhandledExceptionsAttribute$instance;
|
|
843
891
|
|
|
844
892
|
export interface DebuggerDisplayAttribute$instance extends Attribute {
|
|
893
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerDisplayAttribute: never;
|
|
894
|
+
|
|
845
895
|
get Name(): string | undefined;
|
|
846
896
|
set Name(value: string | undefined);
|
|
847
897
|
get Target(): Type | undefined;
|
|
@@ -862,6 +912,8 @@ export const DebuggerDisplayAttribute: {
|
|
|
862
912
|
export type DebuggerDisplayAttribute = DebuggerDisplayAttribute$instance;
|
|
863
913
|
|
|
864
914
|
export interface DebuggerHiddenAttribute$instance extends Attribute {
|
|
915
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerHiddenAttribute: never;
|
|
916
|
+
|
|
865
917
|
}
|
|
866
918
|
|
|
867
919
|
|
|
@@ -873,6 +925,8 @@ export const DebuggerHiddenAttribute: {
|
|
|
873
925
|
export type DebuggerHiddenAttribute = DebuggerHiddenAttribute$instance;
|
|
874
926
|
|
|
875
927
|
export interface DebuggerNonUserCodeAttribute$instance extends Attribute {
|
|
928
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerNonUserCodeAttribute: never;
|
|
929
|
+
|
|
876
930
|
}
|
|
877
931
|
|
|
878
932
|
|
|
@@ -884,6 +938,8 @@ export const DebuggerNonUserCodeAttribute: {
|
|
|
884
938
|
export type DebuggerNonUserCodeAttribute = DebuggerNonUserCodeAttribute$instance;
|
|
885
939
|
|
|
886
940
|
export interface DebuggerStepperBoundaryAttribute$instance extends Attribute {
|
|
941
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerStepperBoundaryAttribute: never;
|
|
942
|
+
|
|
887
943
|
}
|
|
888
944
|
|
|
889
945
|
|
|
@@ -895,6 +951,8 @@ export const DebuggerStepperBoundaryAttribute: {
|
|
|
895
951
|
export type DebuggerStepperBoundaryAttribute = DebuggerStepperBoundaryAttribute$instance;
|
|
896
952
|
|
|
897
953
|
export interface DebuggerStepThroughAttribute$instance extends Attribute {
|
|
954
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerStepThroughAttribute: never;
|
|
955
|
+
|
|
898
956
|
}
|
|
899
957
|
|
|
900
958
|
|
|
@@ -906,6 +964,8 @@ export const DebuggerStepThroughAttribute: {
|
|
|
906
964
|
export type DebuggerStepThroughAttribute = DebuggerStepThroughAttribute$instance;
|
|
907
965
|
|
|
908
966
|
export interface DebuggerTypeProxyAttribute$instance extends Attribute {
|
|
967
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerTypeProxyAttribute: never;
|
|
968
|
+
|
|
909
969
|
readonly ProxyTypeName: string;
|
|
910
970
|
get Target(): Type | undefined;
|
|
911
971
|
set Target(value: Type | undefined);
|
|
@@ -923,6 +983,8 @@ export const DebuggerTypeProxyAttribute: {
|
|
|
923
983
|
export type DebuggerTypeProxyAttribute = DebuggerTypeProxyAttribute$instance;
|
|
924
984
|
|
|
925
985
|
export interface DebuggerVisualizerAttribute$instance extends Attribute {
|
|
986
|
+
readonly __tsonic_type_System_Diagnostics_DebuggerVisualizerAttribute: never;
|
|
987
|
+
|
|
926
988
|
get Description(): string | undefined;
|
|
927
989
|
set Description(value: string | undefined);
|
|
928
990
|
get Target(): Type | undefined;
|
|
@@ -947,6 +1009,8 @@ export const DebuggerVisualizerAttribute: {
|
|
|
947
1009
|
export type DebuggerVisualizerAttribute = DebuggerVisualizerAttribute$instance;
|
|
948
1010
|
|
|
949
1011
|
export interface DebugProvider$instance {
|
|
1012
|
+
readonly __tsonic_type_System_Diagnostics_DebugProvider: never;
|
|
1013
|
+
|
|
950
1014
|
Fail(message: string, detailMessage: string): void;
|
|
951
1015
|
OnIndentLevelChanged(indentLevel: int): void;
|
|
952
1016
|
OnIndentSizeChanged(indentSize: int): void;
|
|
@@ -965,6 +1029,8 @@ export const DebugProvider: {
|
|
|
965
1029
|
export type DebugProvider = DebugProvider$instance;
|
|
966
1030
|
|
|
967
1031
|
export interface DefaultTraceListener$instance extends TraceListener$instance {
|
|
1032
|
+
readonly __tsonic_type_System_Diagnostics_DefaultTraceListener: never;
|
|
1033
|
+
|
|
968
1034
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
969
1035
|
|
|
970
1036
|
AssertUiEnabled: boolean;
|
|
@@ -998,6 +1064,8 @@ export type DefaultTraceListener = DefaultTraceListener$instance & __DefaultTrac
|
|
|
998
1064
|
|
|
999
1065
|
|
|
1000
1066
|
export interface DelimitedListTraceListener$instance extends TextWriterTraceListener$instance {
|
|
1067
|
+
readonly __tsonic_type_System_Diagnostics_DelimitedListTraceListener: never;
|
|
1068
|
+
|
|
1001
1069
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1002
1070
|
|
|
1003
1071
|
Delimiter: string;
|
|
@@ -1029,7 +1097,9 @@ export interface __DelimitedListTraceListener$views {
|
|
|
1029
1097
|
export type DelimitedListTraceListener = DelimitedListTraceListener$instance & __DelimitedListTraceListener$views;
|
|
1030
1098
|
|
|
1031
1099
|
|
|
1032
|
-
export interface DiagnosticListener$instance extends DiagnosticSource {
|
|
1100
|
+
export interface DiagnosticListener$instance extends DiagnosticSource, System_Internal.IDisposable$instance {
|
|
1101
|
+
readonly __tsonic_type_System_Diagnostics_DiagnosticListener: never;
|
|
1102
|
+
|
|
1033
1103
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1034
1104
|
readonly __tsonic_iface_System_IObservable_1: never;
|
|
1035
1105
|
|
|
@@ -1060,12 +1130,12 @@ export interface __DiagnosticListener$views {
|
|
|
1060
1130
|
As_IObservable_1(): System_Internal.IObservable_1$instance<KeyValuePair_2<System_Internal.String, unknown>>;
|
|
1061
1131
|
}
|
|
1062
1132
|
|
|
1063
|
-
export interface DiagnosticListener$instance extends System_Internal.IDisposable$instance {}
|
|
1064
|
-
|
|
1065
1133
|
export type DiagnosticListener = DiagnosticListener$instance & __DiagnosticListener$views;
|
|
1066
1134
|
|
|
1067
1135
|
|
|
1068
1136
|
export interface DiagnosticMethodInfo$instance {
|
|
1137
|
+
readonly __tsonic_type_System_Diagnostics_DiagnosticMethodInfo: never;
|
|
1138
|
+
|
|
1069
1139
|
readonly DeclaringAssemblyName: string | undefined;
|
|
1070
1140
|
readonly DeclaringTypeName: string | undefined;
|
|
1071
1141
|
readonly Name: string;
|
|
@@ -1081,6 +1151,8 @@ export const DiagnosticMethodInfo: {
|
|
|
1081
1151
|
export type DiagnosticMethodInfo = DiagnosticMethodInfo$instance;
|
|
1082
1152
|
|
|
1083
1153
|
export interface DiagnosticSource$instance {
|
|
1154
|
+
readonly __tsonic_type_System_Diagnostics_DiagnosticSource: never;
|
|
1155
|
+
|
|
1084
1156
|
IsEnabled(name: string): boolean;
|
|
1085
1157
|
IsEnabled(name: string, arg1: unknown, arg2?: unknown): boolean;
|
|
1086
1158
|
OnActivityExport(activity: Activity, payload: unknown): void;
|
|
@@ -1101,6 +1173,8 @@ export const DiagnosticSource: (abstract new() => DiagnosticSource) & {
|
|
|
1101
1173
|
export type DiagnosticSource = DiagnosticSource$instance;
|
|
1102
1174
|
|
|
1103
1175
|
export interface DistributedContextPropagator$instance {
|
|
1176
|
+
readonly __tsonic_type_System_Diagnostics_DistributedContextPropagator: never;
|
|
1177
|
+
|
|
1104
1178
|
readonly Fields: IReadOnlyCollection_1<System_Internal.String>;
|
|
1105
1179
|
ExtractBaggage(carrier: unknown, getter: DistributedContextPropagator_PropagatorGetterCallback): IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>> | undefined;
|
|
1106
1180
|
ExtractTraceIdAndState(carrier: unknown, getter: DistributedContextPropagator_PropagatorGetterCallback, traceId: string, traceState: string): void;
|
|
@@ -1121,6 +1195,8 @@ export const DistributedContextPropagator: (abstract new() => DistributedContext
|
|
|
1121
1195
|
export type DistributedContextPropagator = DistributedContextPropagator$instance;
|
|
1122
1196
|
|
|
1123
1197
|
export interface EventTypeFilter$instance extends TraceFilter {
|
|
1198
|
+
readonly __tsonic_type_System_Diagnostics_EventTypeFilter: never;
|
|
1199
|
+
|
|
1124
1200
|
EventType: SourceLevels;
|
|
1125
1201
|
ShouldTrace(cache: TraceEventCache, source: string, eventType: TraceEventType, id: int, formatOrMessage: string, args: unknown[], data1: unknown, data: unknown[]): boolean;
|
|
1126
1202
|
}
|
|
@@ -1134,6 +1210,8 @@ export const EventTypeFilter: {
|
|
|
1134
1210
|
export type EventTypeFilter = EventTypeFilter$instance;
|
|
1135
1211
|
|
|
1136
1212
|
export interface FileVersionInfo$instance {
|
|
1213
|
+
readonly __tsonic_type_System_Diagnostics_FileVersionInfo: never;
|
|
1214
|
+
|
|
1137
1215
|
readonly Comments: string | undefined;
|
|
1138
1216
|
readonly CompanyName: string | undefined;
|
|
1139
1217
|
readonly FileBuildPart: int;
|
|
@@ -1173,6 +1251,8 @@ export const FileVersionInfo: {
|
|
|
1173
1251
|
export type FileVersionInfo = FileVersionInfo$instance;
|
|
1174
1252
|
|
|
1175
1253
|
export interface InitializingSwitchEventArgs$instance extends EventArgs {
|
|
1254
|
+
readonly __tsonic_type_System_Diagnostics_InitializingSwitchEventArgs: never;
|
|
1255
|
+
|
|
1176
1256
|
readonly Switch: Switch;
|
|
1177
1257
|
}
|
|
1178
1258
|
|
|
@@ -1185,6 +1265,8 @@ export const InitializingSwitchEventArgs: {
|
|
|
1185
1265
|
export type InitializingSwitchEventArgs = InitializingSwitchEventArgs$instance;
|
|
1186
1266
|
|
|
1187
1267
|
export interface InitializingTraceSourceEventArgs$instance extends EventArgs {
|
|
1268
|
+
readonly __tsonic_type_System_Diagnostics_InitializingTraceSourceEventArgs: never;
|
|
1269
|
+
|
|
1188
1270
|
readonly TraceSource: TraceSource;
|
|
1189
1271
|
WasInitialized: boolean;
|
|
1190
1272
|
}
|
|
@@ -1198,6 +1280,8 @@ export const InitializingTraceSourceEventArgs: {
|
|
|
1198
1280
|
export type InitializingTraceSourceEventArgs = InitializingTraceSourceEventArgs$instance;
|
|
1199
1281
|
|
|
1200
1282
|
export interface MonitoringDescriptionAttribute$instance extends DescriptionAttribute {
|
|
1283
|
+
readonly __tsonic_type_System_Diagnostics_MonitoringDescriptionAttribute: never;
|
|
1284
|
+
|
|
1201
1285
|
readonly Description: string;
|
|
1202
1286
|
}
|
|
1203
1287
|
|
|
@@ -1210,6 +1294,8 @@ export const MonitoringDescriptionAttribute: {
|
|
|
1210
1294
|
export type MonitoringDescriptionAttribute = MonitoringDescriptionAttribute$instance;
|
|
1211
1295
|
|
|
1212
1296
|
export interface Process$instance extends Component {
|
|
1297
|
+
readonly __tsonic_type_System_Diagnostics_Process: never;
|
|
1298
|
+
|
|
1213
1299
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1214
1300
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1215
1301
|
|
|
@@ -1316,6 +1402,8 @@ export type Process = Process$instance & __Process$views;
|
|
|
1316
1402
|
|
|
1317
1403
|
|
|
1318
1404
|
export interface ProcessModule$instance extends Component {
|
|
1405
|
+
readonly __tsonic_type_System_Diagnostics_ProcessModule: never;
|
|
1406
|
+
|
|
1319
1407
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1320
1408
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1321
1409
|
|
|
@@ -1344,6 +1432,8 @@ export type ProcessModule = ProcessModule$instance & __ProcessModule$views;
|
|
|
1344
1432
|
|
|
1345
1433
|
|
|
1346
1434
|
export interface ProcessModuleCollection$instance extends ReadOnlyCollectionBase {
|
|
1435
|
+
readonly __tsonic_type_System_Diagnostics_ProcessModuleCollection: never;
|
|
1436
|
+
|
|
1347
1437
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1348
1438
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1349
1439
|
|
|
@@ -1369,6 +1459,8 @@ export type ProcessModuleCollection = ProcessModuleCollection$instance & __Proce
|
|
|
1369
1459
|
|
|
1370
1460
|
|
|
1371
1461
|
export interface ProcessStartInfo$instance {
|
|
1462
|
+
readonly __tsonic_type_System_Diagnostics_ProcessStartInfo: never;
|
|
1463
|
+
|
|
1372
1464
|
readonly ArgumentList: Collection_1<System_Internal.String>;
|
|
1373
1465
|
Arguments: string;
|
|
1374
1466
|
CreateNewProcessGroup: boolean;
|
|
@@ -1414,6 +1506,8 @@ export const ProcessStartInfo: {
|
|
|
1414
1506
|
export type ProcessStartInfo = ProcessStartInfo$instance;
|
|
1415
1507
|
|
|
1416
1508
|
export interface ProcessThread$instance extends Component {
|
|
1509
|
+
readonly __tsonic_type_System_Diagnostics_ProcessThread: never;
|
|
1510
|
+
|
|
1417
1511
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1418
1512
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1419
1513
|
|
|
@@ -1450,6 +1544,8 @@ export type ProcessThread = ProcessThread$instance & __ProcessThread$views;
|
|
|
1450
1544
|
|
|
1451
1545
|
|
|
1452
1546
|
export interface ProcessThreadCollection$instance extends ReadOnlyCollectionBase {
|
|
1547
|
+
readonly __tsonic_type_System_Diagnostics_ProcessThreadCollection: never;
|
|
1548
|
+
|
|
1453
1549
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1454
1550
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1455
1551
|
|
|
@@ -1478,6 +1574,8 @@ export type ProcessThreadCollection = ProcessThreadCollection$instance & __Proce
|
|
|
1478
1574
|
|
|
1479
1575
|
|
|
1480
1576
|
export interface SourceFilter$instance extends TraceFilter {
|
|
1577
|
+
readonly __tsonic_type_System_Diagnostics_SourceFilter: never;
|
|
1578
|
+
|
|
1481
1579
|
Source: string;
|
|
1482
1580
|
ShouldTrace(cache: TraceEventCache, source: string, eventType: TraceEventType, id: int, formatOrMessage: string, args: unknown[], data1: unknown, data: unknown[]): boolean;
|
|
1483
1581
|
}
|
|
@@ -1491,6 +1589,8 @@ export const SourceFilter: {
|
|
|
1491
1589
|
export type SourceFilter = SourceFilter$instance;
|
|
1492
1590
|
|
|
1493
1591
|
export interface SourceSwitch$instance extends Switch {
|
|
1592
|
+
readonly __tsonic_type_System_Diagnostics_SourceSwitch: never;
|
|
1593
|
+
|
|
1494
1594
|
Level: SourceLevels;
|
|
1495
1595
|
OnValueChanged(): void;
|
|
1496
1596
|
ShouldTrace(eventType: TraceEventType): boolean;
|
|
@@ -1506,6 +1606,8 @@ export const SourceSwitch: {
|
|
|
1506
1606
|
export type SourceSwitch = SourceSwitch$instance;
|
|
1507
1607
|
|
|
1508
1608
|
export interface StackFrame$instance {
|
|
1609
|
+
readonly __tsonic_type_System_Diagnostics_StackFrame: never;
|
|
1610
|
+
|
|
1509
1611
|
GetFileColumnNumber(): int;
|
|
1510
1612
|
GetFileLineNumber(): int;
|
|
1511
1613
|
GetFileName(): string | undefined;
|
|
@@ -1530,6 +1632,8 @@ export const StackFrame: {
|
|
|
1530
1632
|
export type StackFrame = StackFrame$instance;
|
|
1531
1633
|
|
|
1532
1634
|
export interface StackTrace$instance {
|
|
1635
|
+
readonly __tsonic_type_System_Diagnostics_StackTrace: never;
|
|
1636
|
+
|
|
1533
1637
|
readonly FrameCount: int;
|
|
1534
1638
|
GetFrame(index: int): StackFrame | undefined;
|
|
1535
1639
|
GetFrames(): StackFrame[];
|
|
@@ -1555,6 +1659,8 @@ export const StackTrace: {
|
|
|
1555
1659
|
export type StackTrace = StackTrace$instance;
|
|
1556
1660
|
|
|
1557
1661
|
export interface StackTraceHiddenAttribute$instance extends Attribute {
|
|
1662
|
+
readonly __tsonic_type_System_Diagnostics_StackTraceHiddenAttribute: never;
|
|
1663
|
+
|
|
1558
1664
|
}
|
|
1559
1665
|
|
|
1560
1666
|
|
|
@@ -1566,6 +1672,8 @@ export const StackTraceHiddenAttribute: {
|
|
|
1566
1672
|
export type StackTraceHiddenAttribute = StackTraceHiddenAttribute$instance;
|
|
1567
1673
|
|
|
1568
1674
|
export interface Stopwatch$instance {
|
|
1675
|
+
readonly __tsonic_type_System_Diagnostics_Stopwatch: never;
|
|
1676
|
+
|
|
1569
1677
|
readonly Elapsed: TimeSpan;
|
|
1570
1678
|
readonly ElapsedMilliseconds: long;
|
|
1571
1679
|
readonly ElapsedTicks: long;
|
|
@@ -1592,6 +1700,8 @@ export const Stopwatch: {
|
|
|
1592
1700
|
export type Stopwatch = Stopwatch$instance;
|
|
1593
1701
|
|
|
1594
1702
|
export interface Switch$instance {
|
|
1703
|
+
readonly __tsonic_type_System_Diagnostics_Switch: never;
|
|
1704
|
+
|
|
1595
1705
|
readonly Attributes: StringDictionary;
|
|
1596
1706
|
readonly DefaultValue: string;
|
|
1597
1707
|
readonly Description: string;
|
|
@@ -1611,6 +1721,8 @@ export const Switch: (abstract new(displayName: string, description: string) =>
|
|
|
1611
1721
|
export type Switch = Switch$instance;
|
|
1612
1722
|
|
|
1613
1723
|
export interface SwitchAttribute$instance extends Attribute {
|
|
1724
|
+
readonly __tsonic_type_System_Diagnostics_SwitchAttribute: never;
|
|
1725
|
+
|
|
1614
1726
|
get SwitchDescription(): string | undefined;
|
|
1615
1727
|
set SwitchDescription(value: string | undefined);
|
|
1616
1728
|
SwitchName: string;
|
|
@@ -1627,6 +1739,8 @@ export const SwitchAttribute: {
|
|
|
1627
1739
|
export type SwitchAttribute = SwitchAttribute$instance;
|
|
1628
1740
|
|
|
1629
1741
|
export interface SwitchLevelAttribute$instance extends Attribute {
|
|
1742
|
+
readonly __tsonic_type_System_Diagnostics_SwitchLevelAttribute: never;
|
|
1743
|
+
|
|
1630
1744
|
SwitchLevelType: Type;
|
|
1631
1745
|
}
|
|
1632
1746
|
|
|
@@ -1639,6 +1753,8 @@ export const SwitchLevelAttribute: {
|
|
|
1639
1753
|
export type SwitchLevelAttribute = SwitchLevelAttribute$instance;
|
|
1640
1754
|
|
|
1641
1755
|
export interface TextWriterTraceListener$instance extends TraceListener$instance {
|
|
1756
|
+
readonly __tsonic_type_System_Diagnostics_TextWriterTraceListener: never;
|
|
1757
|
+
|
|
1642
1758
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1643
1759
|
|
|
1644
1760
|
get Writer(): TextWriter | undefined;
|
|
@@ -1677,6 +1793,8 @@ export type TextWriterTraceListener = TextWriterTraceListener$instance & __TextW
|
|
|
1677
1793
|
|
|
1678
1794
|
|
|
1679
1795
|
export interface Trace$instance {
|
|
1796
|
+
readonly __tsonic_type_System_Diagnostics_Trace: never;
|
|
1797
|
+
|
|
1680
1798
|
}
|
|
1681
1799
|
|
|
1682
1800
|
|
|
@@ -1725,6 +1843,8 @@ export const Trace: {
|
|
|
1725
1843
|
export type Trace = Trace$instance;
|
|
1726
1844
|
|
|
1727
1845
|
export interface TraceEventCache$instance {
|
|
1846
|
+
readonly __tsonic_type_System_Diagnostics_TraceEventCache: never;
|
|
1847
|
+
|
|
1728
1848
|
readonly Callstack: string;
|
|
1729
1849
|
readonly DateTime: DateTime;
|
|
1730
1850
|
readonly LogicalOperationStack: Stack;
|
|
@@ -1742,6 +1862,8 @@ export const TraceEventCache: {
|
|
|
1742
1862
|
export type TraceEventCache = TraceEventCache$instance;
|
|
1743
1863
|
|
|
1744
1864
|
export interface TraceFilter$instance {
|
|
1865
|
+
readonly __tsonic_type_System_Diagnostics_TraceFilter: never;
|
|
1866
|
+
|
|
1745
1867
|
ShouldTrace(cache: TraceEventCache, source: string, eventType: TraceEventType, id: int, formatOrMessage: string, args: unknown[], data1: unknown, data: unknown[]): boolean;
|
|
1746
1868
|
}
|
|
1747
1869
|
|
|
@@ -1753,6 +1875,8 @@ export const TraceFilter: (abstract new() => TraceFilter) & {
|
|
|
1753
1875
|
export type TraceFilter = TraceFilter$instance;
|
|
1754
1876
|
|
|
1755
1877
|
export interface TraceListener$instance extends MarshalByRefObject {
|
|
1878
|
+
readonly __tsonic_type_System_Diagnostics_TraceListener: never;
|
|
1879
|
+
|
|
1756
1880
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1757
1881
|
|
|
1758
1882
|
readonly Attributes: StringDictionary;
|
|
@@ -1800,6 +1924,8 @@ export type TraceListener = TraceListener$instance & __TraceListener$views;
|
|
|
1800
1924
|
|
|
1801
1925
|
|
|
1802
1926
|
export interface TraceListenerCollection$instance {
|
|
1927
|
+
readonly __tsonic_type_System_Diagnostics_TraceListenerCollection: never;
|
|
1928
|
+
|
|
1803
1929
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1804
1930
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1805
1931
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -1837,6 +1963,8 @@ export type TraceListenerCollection = TraceListenerCollection$instance & __Trace
|
|
|
1837
1963
|
|
|
1838
1964
|
|
|
1839
1965
|
export interface TraceSource$instance {
|
|
1966
|
+
readonly __tsonic_type_System_Diagnostics_TraceSource: never;
|
|
1967
|
+
|
|
1840
1968
|
readonly Attributes: StringDictionary;
|
|
1841
1969
|
readonly DefaultLevel: SourceLevels;
|
|
1842
1970
|
readonly Listeners: TraceListenerCollection;
|
|
@@ -1865,6 +1993,8 @@ export const TraceSource: {
|
|
|
1865
1993
|
export type TraceSource = TraceSource$instance;
|
|
1866
1994
|
|
|
1867
1995
|
export interface TraceSwitch$instance extends Switch {
|
|
1996
|
+
readonly __tsonic_type_System_Diagnostics_TraceSwitch: never;
|
|
1997
|
+
|
|
1868
1998
|
Level: TraceLevel;
|
|
1869
1999
|
readonly TraceError: boolean;
|
|
1870
2000
|
readonly TraceInfo: boolean;
|
|
@@ -1884,6 +2014,8 @@ export const TraceSwitch: {
|
|
|
1884
2014
|
export type TraceSwitch = TraceSwitch$instance;
|
|
1885
2015
|
|
|
1886
2016
|
export interface UnreachableException$instance extends Exception {
|
|
2017
|
+
readonly __tsonic_type_System_Diagnostics_UnreachableException: never;
|
|
2018
|
+
|
|
1887
2019
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1888
2020
|
|
|
1889
2021
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1905,6 +2037,8 @@ export type UnreachableException = UnreachableException$instance & __Unreachable
|
|
|
1905
2037
|
|
|
1906
2038
|
|
|
1907
2039
|
export interface XmlWriterTraceListener$instance extends TextWriterTraceListener$instance {
|
|
2040
|
+
readonly __tsonic_type_System_Diagnostics_XmlWriterTraceListener: never;
|
|
2041
|
+
|
|
1908
2042
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1909
2043
|
|
|
1910
2044
|
Close(): void;
|