@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
|
@@ -176,6 +176,8 @@ export type RenamedEventHandler = (sender: unknown, e: RenamedEventArgs) => void
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
export interface WaitForChangedResult$instance {
|
|
179
|
+
readonly __tsonic_type_System_IO_WaitForChangedResult: never;
|
|
180
|
+
|
|
179
181
|
ChangeType: WatcherChangeTypes;
|
|
180
182
|
get Name(): string | undefined;
|
|
181
183
|
set Name(value: string | undefined);
|
|
@@ -193,6 +195,10 @@ export const WaitForChangedResult: {
|
|
|
193
195
|
export type WaitForChangedResult = WaitForChangedResult$instance;
|
|
194
196
|
|
|
195
197
|
export interface BinaryReader$instance {
|
|
198
|
+
readonly __tsonic_type_System_IO_BinaryReader: never;
|
|
199
|
+
|
|
200
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
201
|
+
|
|
196
202
|
readonly BaseStream: Stream;
|
|
197
203
|
Close(): void;
|
|
198
204
|
Dispose(disposing: boolean): void;
|
|
@@ -241,7 +247,12 @@ export interface __BinaryReader$views {
|
|
|
241
247
|
export type BinaryReader = BinaryReader$instance & __BinaryReader$views;
|
|
242
248
|
|
|
243
249
|
|
|
244
|
-
export interface BinaryWriter$instance {
|
|
250
|
+
export interface BinaryWriter$instance extends System_Internal.IAsyncDisposable$instance {
|
|
251
|
+
readonly __tsonic_type_System_IO_BinaryWriter: never;
|
|
252
|
+
|
|
253
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
254
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
255
|
+
|
|
245
256
|
readonly BaseStream: Stream;
|
|
246
257
|
Close(): void;
|
|
247
258
|
Dispose(disposing: boolean): void;
|
|
@@ -288,12 +299,15 @@ export interface __BinaryWriter$views {
|
|
|
288
299
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
289
300
|
}
|
|
290
301
|
|
|
291
|
-
export interface BinaryWriter$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
292
|
-
|
|
293
302
|
export type BinaryWriter = BinaryWriter$instance & __BinaryWriter$views;
|
|
294
303
|
|
|
295
304
|
|
|
296
305
|
export interface BufferedStream$instance extends Stream$instance {
|
|
306
|
+
readonly __tsonic_type_System_IO_BufferedStream: never;
|
|
307
|
+
|
|
308
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
309
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
310
|
+
|
|
297
311
|
readonly BufferSize: int;
|
|
298
312
|
readonly CanRead: boolean;
|
|
299
313
|
readonly CanSeek: boolean;
|
|
@@ -354,6 +368,10 @@ export type BufferedStream = BufferedStream$instance & __BufferedStream$views;
|
|
|
354
368
|
|
|
355
369
|
|
|
356
370
|
export interface DirectoryInfo$instance extends FileSystemInfo$instance {
|
|
371
|
+
readonly __tsonic_type_System_IO_DirectoryInfo: never;
|
|
372
|
+
|
|
373
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
374
|
+
|
|
357
375
|
readonly Exists: boolean;
|
|
358
376
|
readonly Name: string;
|
|
359
377
|
readonly Parent: DirectoryInfo | undefined;
|
|
@@ -403,6 +421,10 @@ export type DirectoryInfo = DirectoryInfo$instance & __DirectoryInfo$views;
|
|
|
403
421
|
|
|
404
422
|
|
|
405
423
|
export interface DirectoryNotFoundException$instance extends IOException$instance {
|
|
424
|
+
readonly __tsonic_type_System_IO_DirectoryNotFoundException: never;
|
|
425
|
+
|
|
426
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
427
|
+
|
|
406
428
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
407
429
|
}
|
|
408
430
|
|
|
@@ -421,7 +443,11 @@ export interface __DirectoryNotFoundException$views {
|
|
|
421
443
|
export type DirectoryNotFoundException = DirectoryNotFoundException$instance & __DirectoryNotFoundException$views;
|
|
422
444
|
|
|
423
445
|
|
|
424
|
-
export interface DriveInfo$instance {
|
|
446
|
+
export interface DriveInfo$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
447
|
+
readonly __tsonic_type_System_IO_DriveInfo: never;
|
|
448
|
+
|
|
449
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
450
|
+
|
|
425
451
|
readonly AvailableFreeSpace: long;
|
|
426
452
|
readonly DriveFormat: string;
|
|
427
453
|
readonly DriveType: DriveType;
|
|
@@ -445,12 +471,14 @@ export interface __DriveInfo$views {
|
|
|
445
471
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
446
472
|
}
|
|
447
473
|
|
|
448
|
-
export interface DriveInfo$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
449
|
-
|
|
450
474
|
export type DriveInfo = DriveInfo$instance & __DriveInfo$views;
|
|
451
475
|
|
|
452
476
|
|
|
453
477
|
export interface DriveNotFoundException$instance extends IOException$instance {
|
|
478
|
+
readonly __tsonic_type_System_IO_DriveNotFoundException: never;
|
|
479
|
+
|
|
480
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
481
|
+
|
|
454
482
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
455
483
|
}
|
|
456
484
|
|
|
@@ -470,6 +498,10 @@ export type DriveNotFoundException = DriveNotFoundException$instance & __DriveNo
|
|
|
470
498
|
|
|
471
499
|
|
|
472
500
|
export interface EndOfStreamException$instance extends IOException$instance {
|
|
501
|
+
readonly __tsonic_type_System_IO_EndOfStreamException: never;
|
|
502
|
+
|
|
503
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
504
|
+
|
|
473
505
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
474
506
|
}
|
|
475
507
|
|
|
@@ -489,6 +521,8 @@ export type EndOfStreamException = EndOfStreamException$instance & __EndOfStream
|
|
|
489
521
|
|
|
490
522
|
|
|
491
523
|
export interface EnumerationOptions$instance {
|
|
524
|
+
readonly __tsonic_type_System_IO_EnumerationOptions: never;
|
|
525
|
+
|
|
492
526
|
AttributesToSkip: FileAttributes;
|
|
493
527
|
BufferSize: int;
|
|
494
528
|
IgnoreInaccessible: boolean;
|
|
@@ -508,6 +542,8 @@ export const EnumerationOptions: {
|
|
|
508
542
|
export type EnumerationOptions = EnumerationOptions$instance;
|
|
509
543
|
|
|
510
544
|
export interface ErrorEventArgs$instance extends EventArgs {
|
|
545
|
+
readonly __tsonic_type_System_IO_ErrorEventArgs: never;
|
|
546
|
+
|
|
511
547
|
GetException(): Exception;
|
|
512
548
|
}
|
|
513
549
|
|
|
@@ -520,6 +556,10 @@ export const ErrorEventArgs: {
|
|
|
520
556
|
export type ErrorEventArgs = ErrorEventArgs$instance;
|
|
521
557
|
|
|
522
558
|
export interface FileInfo$instance extends FileSystemInfo$instance {
|
|
559
|
+
readonly __tsonic_type_System_IO_FileInfo: never;
|
|
560
|
+
|
|
561
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
562
|
+
|
|
523
563
|
readonly Directory: DirectoryInfo | undefined;
|
|
524
564
|
readonly DirectoryName: string | undefined;
|
|
525
565
|
readonly Exists: boolean;
|
|
@@ -562,6 +602,10 @@ export type FileInfo = FileInfo$instance & __FileInfo$views;
|
|
|
562
602
|
|
|
563
603
|
|
|
564
604
|
export interface FileLoadException$instance extends IOException$instance {
|
|
605
|
+
readonly __tsonic_type_System_IO_FileLoadException: never;
|
|
606
|
+
|
|
607
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
608
|
+
|
|
565
609
|
readonly FileName: string | undefined;
|
|
566
610
|
readonly FusionLog: string | undefined;
|
|
567
611
|
readonly Message: string;
|
|
@@ -587,6 +631,10 @@ export type FileLoadException = FileLoadException$instance & __FileLoadException
|
|
|
587
631
|
|
|
588
632
|
|
|
589
633
|
export interface FileNotFoundException$instance extends IOException$instance {
|
|
634
|
+
readonly __tsonic_type_System_IO_FileNotFoundException: never;
|
|
635
|
+
|
|
636
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
637
|
+
|
|
590
638
|
readonly FileName: string | undefined;
|
|
591
639
|
readonly FusionLog: string | undefined;
|
|
592
640
|
readonly Message: string;
|
|
@@ -612,6 +660,11 @@ export type FileNotFoundException = FileNotFoundException$instance & __FileNotFo
|
|
|
612
660
|
|
|
613
661
|
|
|
614
662
|
export interface FileStream$instance extends Stream$instance {
|
|
663
|
+
readonly __tsonic_type_System_IO_FileStream: never;
|
|
664
|
+
|
|
665
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
666
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
667
|
+
|
|
615
668
|
readonly CanRead: boolean;
|
|
616
669
|
readonly CanSeek: boolean;
|
|
617
670
|
readonly CanWrite: boolean;
|
|
@@ -689,6 +742,8 @@ export type FileStream = FileStream$instance & __FileStream$views;
|
|
|
689
742
|
|
|
690
743
|
|
|
691
744
|
export interface FileStreamOptions$instance {
|
|
745
|
+
readonly __tsonic_type_System_IO_FileStreamOptions: never;
|
|
746
|
+
|
|
692
747
|
Access: FileAccess;
|
|
693
748
|
BufferSize: int;
|
|
694
749
|
Mode: FileMode;
|
|
@@ -707,6 +762,8 @@ export const FileStreamOptions: {
|
|
|
707
762
|
export type FileStreamOptions = FileStreamOptions$instance;
|
|
708
763
|
|
|
709
764
|
export interface FileSystemEventArgs$instance extends EventArgs {
|
|
765
|
+
readonly __tsonic_type_System_IO_FileSystemEventArgs: never;
|
|
766
|
+
|
|
710
767
|
readonly ChangeType: WatcherChangeTypes;
|
|
711
768
|
readonly FullPath: string;
|
|
712
769
|
readonly Name: string | undefined;
|
|
@@ -720,7 +777,11 @@ export const FileSystemEventArgs: {
|
|
|
720
777
|
|
|
721
778
|
export type FileSystemEventArgs = FileSystemEventArgs$instance;
|
|
722
779
|
|
|
723
|
-
export interface FileSystemInfo$instance extends MarshalByRefObject {
|
|
780
|
+
export interface FileSystemInfo$instance extends MarshalByRefObject, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
781
|
+
readonly __tsonic_type_System_IO_FileSystemInfo: never;
|
|
782
|
+
|
|
783
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
784
|
+
|
|
724
785
|
Attributes: FileAttributes;
|
|
725
786
|
CreationTime: DateTime;
|
|
726
787
|
CreationTimeUtc: DateTime;
|
|
@@ -751,12 +812,16 @@ export interface __FileSystemInfo$views {
|
|
|
751
812
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
752
813
|
}
|
|
753
814
|
|
|
754
|
-
export interface FileSystemInfo$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
755
|
-
|
|
756
815
|
export type FileSystemInfo = FileSystemInfo$instance & __FileSystemInfo$views;
|
|
757
816
|
|
|
758
817
|
|
|
759
|
-
export interface FileSystemWatcher$instance extends Component {
|
|
818
|
+
export interface FileSystemWatcher$instance extends Component, System_ComponentModel_Internal.ISupportInitialize$instance {
|
|
819
|
+
readonly __tsonic_type_System_IO_FileSystemWatcher: never;
|
|
820
|
+
|
|
821
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
822
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
823
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
824
|
+
|
|
760
825
|
EnableRaisingEvents: boolean;
|
|
761
826
|
Filter: string;
|
|
762
827
|
readonly Filters: Collection_1<System_Internal.String>;
|
|
@@ -791,12 +856,14 @@ export interface __FileSystemWatcher$views {
|
|
|
791
856
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
792
857
|
}
|
|
793
858
|
|
|
794
|
-
export interface FileSystemWatcher$instance extends System_ComponentModel_Internal.ISupportInitialize$instance {}
|
|
795
|
-
|
|
796
859
|
export type FileSystemWatcher = FileSystemWatcher$instance & __FileSystemWatcher$views;
|
|
797
860
|
|
|
798
861
|
|
|
799
862
|
export interface InternalBufferOverflowException$instance extends SystemException {
|
|
863
|
+
readonly __tsonic_type_System_IO_InternalBufferOverflowException: never;
|
|
864
|
+
|
|
865
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
866
|
+
|
|
800
867
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
801
868
|
}
|
|
802
869
|
|
|
@@ -816,6 +883,10 @@ export type InternalBufferOverflowException = InternalBufferOverflowException$in
|
|
|
816
883
|
|
|
817
884
|
|
|
818
885
|
export interface InvalidDataException$instance extends SystemException {
|
|
886
|
+
readonly __tsonic_type_System_IO_InvalidDataException: never;
|
|
887
|
+
|
|
888
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
889
|
+
|
|
819
890
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
820
891
|
}
|
|
821
892
|
|
|
@@ -835,6 +906,10 @@ export type InvalidDataException = InvalidDataException$instance & __InvalidData
|
|
|
835
906
|
|
|
836
907
|
|
|
837
908
|
export interface IOException$instance extends SystemException {
|
|
909
|
+
readonly __tsonic_type_System_IO_IOException: never;
|
|
910
|
+
|
|
911
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
912
|
+
|
|
838
913
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
839
914
|
}
|
|
840
915
|
|
|
@@ -855,6 +930,11 @@ export type IOException = IOException$instance & __IOException$views;
|
|
|
855
930
|
|
|
856
931
|
|
|
857
932
|
export interface MemoryStream$instance extends Stream$instance {
|
|
933
|
+
readonly __tsonic_type_System_IO_MemoryStream: never;
|
|
934
|
+
|
|
935
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
936
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
937
|
+
|
|
858
938
|
readonly CanRead: boolean;
|
|
859
939
|
readonly CanSeek: boolean;
|
|
860
940
|
readonly CanWrite: boolean;
|
|
@@ -919,6 +999,10 @@ export type MemoryStream = MemoryStream$instance & __MemoryStream$views;
|
|
|
919
999
|
|
|
920
1000
|
|
|
921
1001
|
export interface PathTooLongException$instance extends IOException$instance {
|
|
1002
|
+
readonly __tsonic_type_System_IO_PathTooLongException: never;
|
|
1003
|
+
|
|
1004
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1005
|
+
|
|
922
1006
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
923
1007
|
}
|
|
924
1008
|
|
|
@@ -938,6 +1022,8 @@ export type PathTooLongException = PathTooLongException$instance & __PathTooLong
|
|
|
938
1022
|
|
|
939
1023
|
|
|
940
1024
|
export interface RenamedEventArgs$instance extends FileSystemEventArgs {
|
|
1025
|
+
readonly __tsonic_type_System_IO_RenamedEventArgs: never;
|
|
1026
|
+
|
|
941
1027
|
readonly OldFullPath: string;
|
|
942
1028
|
readonly OldName: string | undefined;
|
|
943
1029
|
}
|
|
@@ -950,7 +1036,12 @@ export const RenamedEventArgs: {
|
|
|
950
1036
|
|
|
951
1037
|
export type RenamedEventArgs = RenamedEventArgs$instance;
|
|
952
1038
|
|
|
953
|
-
export interface Stream$instance extends MarshalByRefObject {
|
|
1039
|
+
export interface Stream$instance extends MarshalByRefObject, System_Internal.IAsyncDisposable$instance {
|
|
1040
|
+
readonly __tsonic_type_System_IO_Stream: never;
|
|
1041
|
+
|
|
1042
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1043
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1044
|
+
|
|
954
1045
|
readonly CanRead: boolean;
|
|
955
1046
|
readonly CanSeek: boolean;
|
|
956
1047
|
readonly CanTimeout: boolean;
|
|
@@ -1014,12 +1105,14 @@ export interface __Stream$views {
|
|
|
1014
1105
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1015
1106
|
}
|
|
1016
1107
|
|
|
1017
|
-
export interface Stream$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
1018
|
-
|
|
1019
1108
|
export type Stream = Stream$instance & __Stream$views;
|
|
1020
1109
|
|
|
1021
1110
|
|
|
1022
1111
|
export interface StreamReader$instance extends TextReader$instance {
|
|
1112
|
+
readonly __tsonic_type_System_IO_StreamReader: never;
|
|
1113
|
+
|
|
1114
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1115
|
+
|
|
1023
1116
|
readonly BaseStream: Stream;
|
|
1024
1117
|
readonly CurrentEncoding: Encoding;
|
|
1025
1118
|
readonly EndOfStream: boolean;
|
|
@@ -1081,6 +1174,11 @@ export type StreamReader = StreamReader$instance & __StreamReader$views;
|
|
|
1081
1174
|
|
|
1082
1175
|
|
|
1083
1176
|
export interface StreamWriter$instance extends TextWriter$instance {
|
|
1177
|
+
readonly __tsonic_type_System_IO_StreamWriter: never;
|
|
1178
|
+
|
|
1179
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1180
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1181
|
+
|
|
1084
1182
|
AutoFlush: boolean;
|
|
1085
1183
|
readonly BaseStream: Stream;
|
|
1086
1184
|
readonly Encoding: Encoding;
|
|
@@ -1177,6 +1275,10 @@ export type StreamWriter = StreamWriter$instance & __StreamWriter$views;
|
|
|
1177
1275
|
|
|
1178
1276
|
|
|
1179
1277
|
export interface StringReader$instance extends TextReader$instance {
|
|
1278
|
+
readonly __tsonic_type_System_IO_StringReader: never;
|
|
1279
|
+
|
|
1280
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1281
|
+
|
|
1180
1282
|
Close(): void;
|
|
1181
1283
|
Dispose(disposing: boolean): void;
|
|
1182
1284
|
Dispose(): void;
|
|
@@ -1222,6 +1324,11 @@ export type StringReader = StringReader$instance & __StringReader$views;
|
|
|
1222
1324
|
|
|
1223
1325
|
|
|
1224
1326
|
export interface StringWriter$instance extends TextWriter$instance {
|
|
1327
|
+
readonly __tsonic_type_System_IO_StringWriter: never;
|
|
1328
|
+
|
|
1329
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1330
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1331
|
+
|
|
1225
1332
|
readonly Encoding: Encoding;
|
|
1226
1333
|
Close(): void;
|
|
1227
1334
|
Dispose(disposing: boolean): void;
|
|
@@ -1309,6 +1416,10 @@ export type StringWriter = StringWriter$instance & __StringWriter$views;
|
|
|
1309
1416
|
|
|
1310
1417
|
|
|
1311
1418
|
export interface TextReader$instance extends MarshalByRefObject {
|
|
1419
|
+
readonly __tsonic_type_System_IO_TextReader: never;
|
|
1420
|
+
|
|
1421
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1422
|
+
|
|
1312
1423
|
Close(): void;
|
|
1313
1424
|
Dispose(): void;
|
|
1314
1425
|
Dispose(disposing: boolean): void;
|
|
@@ -1344,7 +1455,12 @@ export interface __TextReader$views {
|
|
|
1344
1455
|
export type TextReader = TextReader$instance & __TextReader$views;
|
|
1345
1456
|
|
|
1346
1457
|
|
|
1347
|
-
export interface TextWriter$instance extends MarshalByRefObject {
|
|
1458
|
+
export interface TextWriter$instance extends MarshalByRefObject, System_Internal.IAsyncDisposable$instance {
|
|
1459
|
+
readonly __tsonic_type_System_IO_TextWriter: never;
|
|
1460
|
+
|
|
1461
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1462
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1463
|
+
|
|
1348
1464
|
readonly Encoding: Encoding;
|
|
1349
1465
|
readonly FormatProvider: IFormatProvider;
|
|
1350
1466
|
NewLine: string;
|
|
@@ -1424,12 +1540,14 @@ export interface __TextWriter$views {
|
|
|
1424
1540
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1425
1541
|
}
|
|
1426
1542
|
|
|
1427
|
-
export interface TextWriter$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
1428
|
-
|
|
1429
1543
|
export type TextWriter = TextWriter$instance & __TextWriter$views;
|
|
1430
1544
|
|
|
1431
1545
|
|
|
1432
1546
|
export interface UnmanagedMemoryAccessor$instance {
|
|
1547
|
+
readonly __tsonic_type_System_IO_UnmanagedMemoryAccessor: never;
|
|
1548
|
+
|
|
1549
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1550
|
+
|
|
1433
1551
|
readonly CanRead: boolean;
|
|
1434
1552
|
readonly CanWrite: boolean;
|
|
1435
1553
|
readonly Capacity: long;
|
|
@@ -1482,6 +1600,11 @@ export type UnmanagedMemoryAccessor = UnmanagedMemoryAccessor$instance & __Unman
|
|
|
1482
1600
|
|
|
1483
1601
|
|
|
1484
1602
|
export interface UnmanagedMemoryStream$instance extends Stream$instance {
|
|
1603
|
+
readonly __tsonic_type_System_IO_UnmanagedMemoryStream: never;
|
|
1604
|
+
|
|
1605
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1606
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1607
|
+
|
|
1485
1608
|
readonly CanRead: boolean;
|
|
1486
1609
|
readonly CanSeek: boolean;
|
|
1487
1610
|
readonly CanWrite: boolean;
|
|
@@ -53,7 +53,11 @@ export enum ZLibCompressionStrategy {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
export interface BrotliDecoder$instance {
|
|
56
|
+
export interface BrotliDecoder$instance extends System_Internal.IDisposable$instance {
|
|
57
|
+
readonly __tsonic_type_System_IO_Compression_BrotliDecoder: never;
|
|
58
|
+
|
|
59
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
60
|
+
|
|
57
61
|
Decompress(source: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, bytesConsumed: int, bytesWritten: int): OperationStatus;
|
|
58
62
|
Dispose(): void;
|
|
59
63
|
}
|
|
@@ -69,12 +73,14 @@ export interface __BrotliDecoder$views {
|
|
|
69
73
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
70
74
|
}
|
|
71
75
|
|
|
72
|
-
export interface BrotliDecoder$instance extends System_Internal.IDisposable$instance {}
|
|
73
|
-
|
|
74
76
|
export type BrotliDecoder = BrotliDecoder$instance & __BrotliDecoder$views;
|
|
75
77
|
|
|
76
78
|
|
|
77
|
-
export interface BrotliEncoder$instance {
|
|
79
|
+
export interface BrotliEncoder$instance extends System_Internal.IDisposable$instance {
|
|
80
|
+
readonly __tsonic_type_System_IO_Compression_BrotliEncoder: never;
|
|
81
|
+
|
|
82
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
83
|
+
|
|
78
84
|
Compress(source: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, bytesConsumed: int, bytesWritten: int, isFinalBlock: boolean): OperationStatus;
|
|
79
85
|
Dispose(): void;
|
|
80
86
|
Flush(destination: Span_1<System_Internal.Byte>, bytesWritten: int): OperationStatus;
|
|
@@ -93,12 +99,12 @@ export interface __BrotliEncoder$views {
|
|
|
93
99
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
94
100
|
}
|
|
95
101
|
|
|
96
|
-
export interface BrotliEncoder$instance extends System_Internal.IDisposable$instance {}
|
|
97
|
-
|
|
98
102
|
export type BrotliEncoder = BrotliEncoder$instance & __BrotliEncoder$views;
|
|
99
103
|
|
|
100
104
|
|
|
101
105
|
export interface BrotliCompressionOptions$instance {
|
|
106
|
+
readonly __tsonic_type_System_IO_Compression_BrotliCompressionOptions: never;
|
|
107
|
+
|
|
102
108
|
Quality: int;
|
|
103
109
|
}
|
|
104
110
|
|
|
@@ -111,6 +117,11 @@ export const BrotliCompressionOptions: {
|
|
|
111
117
|
export type BrotliCompressionOptions = BrotliCompressionOptions$instance;
|
|
112
118
|
|
|
113
119
|
export interface BrotliStream$instance extends Stream {
|
|
120
|
+
readonly __tsonic_type_System_IO_Compression_BrotliStream: never;
|
|
121
|
+
|
|
122
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
123
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
124
|
+
|
|
114
125
|
readonly BaseStream: Stream;
|
|
115
126
|
readonly CanRead: boolean;
|
|
116
127
|
readonly CanSeek: boolean;
|
|
@@ -167,6 +178,11 @@ export type BrotliStream = BrotliStream$instance & __BrotliStream$views;
|
|
|
167
178
|
|
|
168
179
|
|
|
169
180
|
export interface DeflateStream$instance extends Stream {
|
|
181
|
+
readonly __tsonic_type_System_IO_Compression_DeflateStream: never;
|
|
182
|
+
|
|
183
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
184
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
185
|
+
|
|
170
186
|
readonly BaseStream: Stream;
|
|
171
187
|
readonly CanRead: boolean;
|
|
172
188
|
readonly CanSeek: boolean;
|
|
@@ -229,6 +245,11 @@ export type DeflateStream = DeflateStream$instance & __DeflateStream$views;
|
|
|
229
245
|
|
|
230
246
|
|
|
231
247
|
export interface GZipStream$instance extends Stream {
|
|
248
|
+
readonly __tsonic_type_System_IO_Compression_GZipStream: never;
|
|
249
|
+
|
|
250
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
251
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
252
|
+
|
|
232
253
|
readonly BaseStream: Stream;
|
|
233
254
|
readonly CanRead: boolean;
|
|
234
255
|
readonly CanSeek: boolean;
|
|
@@ -290,7 +311,12 @@ export interface __GZipStream$views {
|
|
|
290
311
|
export type GZipStream = GZipStream$instance & __GZipStream$views;
|
|
291
312
|
|
|
292
313
|
|
|
293
|
-
export interface ZipArchive$instance {
|
|
314
|
+
export interface ZipArchive$instance extends System_Internal.IAsyncDisposable$instance {
|
|
315
|
+
readonly __tsonic_type_System_IO_Compression_ZipArchive: never;
|
|
316
|
+
|
|
317
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
318
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
319
|
+
|
|
294
320
|
Comment: string;
|
|
295
321
|
readonly Entries: ReadOnlyCollection_1<ZipArchiveEntry>;
|
|
296
322
|
readonly Mode: ZipArchiveMode;
|
|
@@ -318,12 +344,12 @@ export interface __ZipArchive$views {
|
|
|
318
344
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
319
345
|
}
|
|
320
346
|
|
|
321
|
-
export interface ZipArchive$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
322
|
-
|
|
323
347
|
export type ZipArchive = ZipArchive$instance & __ZipArchive$views;
|
|
324
348
|
|
|
325
349
|
|
|
326
350
|
export interface ZipArchiveEntry$instance {
|
|
351
|
+
readonly __tsonic_type_System_IO_Compression_ZipArchiveEntry: never;
|
|
352
|
+
|
|
327
353
|
readonly Archive: ZipArchive;
|
|
328
354
|
Comment: string;
|
|
329
355
|
readonly CompressedLength: long;
|
|
@@ -348,6 +374,8 @@ export const ZipArchiveEntry: {
|
|
|
348
374
|
export type ZipArchiveEntry = ZipArchiveEntry$instance;
|
|
349
375
|
|
|
350
376
|
export interface ZLibCompressionOptions$instance {
|
|
377
|
+
readonly __tsonic_type_System_IO_Compression_ZLibCompressionOptions: never;
|
|
378
|
+
|
|
351
379
|
CompressionLevel: int;
|
|
352
380
|
CompressionStrategy: ZLibCompressionStrategy;
|
|
353
381
|
}
|
|
@@ -361,6 +389,10 @@ export const ZLibCompressionOptions: {
|
|
|
361
389
|
export type ZLibCompressionOptions = ZLibCompressionOptions$instance;
|
|
362
390
|
|
|
363
391
|
export interface ZLibException$instance extends IOException {
|
|
392
|
+
readonly __tsonic_type_System_IO_Compression_ZLibException: never;
|
|
393
|
+
|
|
394
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
395
|
+
|
|
364
396
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
365
397
|
}
|
|
366
398
|
|
|
@@ -380,6 +412,11 @@ export type ZLibException = ZLibException$instance & __ZLibException$views;
|
|
|
380
412
|
|
|
381
413
|
|
|
382
414
|
export interface ZLibStream$instance extends Stream {
|
|
415
|
+
readonly __tsonic_type_System_IO_Compression_ZLibStream: never;
|
|
416
|
+
|
|
417
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
418
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
419
|
+
|
|
383
420
|
readonly BaseStream: Stream;
|
|
384
421
|
readonly CanRead: boolean;
|
|
385
422
|
readonly CanSeek: boolean;
|
|
@@ -29,6 +29,8 @@ export type FileSystemEnumerable_1_FindTransform<TResult> = (entry: FileSystemEn
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
export interface FileSystemEntry$instance {
|
|
32
|
+
readonly __tsonic_type_System_IO_Enumeration_FileSystemEntry: never;
|
|
33
|
+
|
|
32
34
|
readonly Attributes: FileAttributes;
|
|
33
35
|
readonly CreationTimeUtc: DateTimeOffset;
|
|
34
36
|
Directory: ReadOnlySpan_1<System_Internal.Char>;
|
|
@@ -54,6 +56,11 @@ export const FileSystemEntry: {
|
|
|
54
56
|
export type FileSystemEntry = FileSystemEntry$instance;
|
|
55
57
|
|
|
56
58
|
export interface FileSystemEnumerable_1$instance<TResult> {
|
|
59
|
+
readonly __tsonic_type_System_IO_Enumeration_FileSystemEnumerable_1: never;
|
|
60
|
+
|
|
61
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
62
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
63
|
+
|
|
57
64
|
get ShouldIncludePredicate(): FileSystemEnumerable_1_FindPredicate<TResult> | undefined;
|
|
58
65
|
set ShouldIncludePredicate(value: FileSystemEnumerable_1_FindPredicate<TResult> | undefined);
|
|
59
66
|
get ShouldRecursePredicate(): FileSystemEnumerable_1_FindPredicate<TResult> | undefined;
|
|
@@ -76,6 +83,12 @@ export type FileSystemEnumerable_1<TResult> = FileSystemEnumerable_1$instance<TR
|
|
|
76
83
|
|
|
77
84
|
|
|
78
85
|
export interface FileSystemEnumerator_1$instance<TResult> extends CriticalFinalizerObject, IDisposable {
|
|
86
|
+
readonly __tsonic_type_System_IO_Enumeration_FileSystemEnumerator_1: never;
|
|
87
|
+
|
|
88
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
89
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
90
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
91
|
+
|
|
79
92
|
readonly Current: TResult;
|
|
80
93
|
ContinueOnError(error: int): boolean;
|
|
81
94
|
Dispose(): void;
|
|
@@ -30,6 +30,8 @@ export enum IsolatedStorageScope {
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
export interface INormalizeForIsolatedStorage$instance {
|
|
33
|
+
readonly __tsonic_iface_System_IO_IsolatedStorage_INormalizeForIsolatedStorage: never;
|
|
34
|
+
|
|
33
35
|
Normalize(): unknown;
|
|
34
36
|
}
|
|
35
37
|
|
|
@@ -37,6 +39,8 @@ export interface INormalizeForIsolatedStorage$instance {
|
|
|
37
39
|
export type INormalizeForIsolatedStorage = INormalizeForIsolatedStorage$instance;
|
|
38
40
|
|
|
39
41
|
export interface IsolatedStorage$instance extends MarshalByRefObject {
|
|
42
|
+
readonly __tsonic_type_System_IO_IsolatedStorage_IsolatedStorage: never;
|
|
43
|
+
|
|
40
44
|
readonly ApplicationIdentity: unknown;
|
|
41
45
|
readonly AssemblyIdentity: unknown;
|
|
42
46
|
readonly AvailableFreeSpace: long;
|
|
@@ -60,6 +64,10 @@ export const IsolatedStorage: (abstract new() => IsolatedStorage) & {
|
|
|
60
64
|
export type IsolatedStorage = IsolatedStorage$instance;
|
|
61
65
|
|
|
62
66
|
export interface IsolatedStorageException$instance extends Exception {
|
|
67
|
+
readonly __tsonic_type_System_IO_IsolatedStorage_IsolatedStorageException: never;
|
|
68
|
+
|
|
69
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
70
|
+
|
|
63
71
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
64
72
|
}
|
|
65
73
|
|
|
@@ -78,7 +86,11 @@ export interface __IsolatedStorageException$views {
|
|
|
78
86
|
export type IsolatedStorageException = IsolatedStorageException$instance & __IsolatedStorageException$views;
|
|
79
87
|
|
|
80
88
|
|
|
81
|
-
export interface IsolatedStorageFile$instance extends IsolatedStorage {
|
|
89
|
+
export interface IsolatedStorageFile$instance extends IsolatedStorage, System_Internal.IDisposable$instance {
|
|
90
|
+
readonly __tsonic_type_System_IO_IsolatedStorage_IsolatedStorageFile: never;
|
|
91
|
+
|
|
92
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
93
|
+
|
|
82
94
|
readonly AvailableFreeSpace: long;
|
|
83
95
|
readonly CurrentSize: ulong;
|
|
84
96
|
readonly MaximumSize: ulong;
|
|
@@ -133,12 +145,15 @@ export interface __IsolatedStorageFile$views {
|
|
|
133
145
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
134
146
|
}
|
|
135
147
|
|
|
136
|
-
export interface IsolatedStorageFile$instance extends System_Internal.IDisposable$instance {}
|
|
137
|
-
|
|
138
148
|
export type IsolatedStorageFile = IsolatedStorageFile$instance & __IsolatedStorageFile$views;
|
|
139
149
|
|
|
140
150
|
|
|
141
151
|
export interface IsolatedStorageFileStream$instance extends FileStream {
|
|
152
|
+
readonly __tsonic_type_System_IO_IsolatedStorage_IsolatedStorageFileStream: never;
|
|
153
|
+
|
|
154
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
155
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
156
|
+
|
|
142
157
|
readonly CanRead: boolean;
|
|
143
158
|
readonly CanSeek: boolean;
|
|
144
159
|
readonly CanWrite: boolean;
|
|
@@ -49,6 +49,10 @@ export enum MemoryMappedFileRights {
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
export interface MemoryMappedFile$instance {
|
|
52
|
+
readonly __tsonic_type_System_IO_MemoryMappedFiles_MemoryMappedFile: never;
|
|
53
|
+
|
|
54
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
55
|
+
|
|
52
56
|
readonly SafeMemoryMappedFileHandle: SafeMemoryMappedFileHandle;
|
|
53
57
|
CreateViewAccessor(): MemoryMappedViewAccessor;
|
|
54
58
|
CreateViewAccessor(offset: long, size: long): MemoryMappedViewAccessor;
|
|
@@ -89,6 +93,10 @@ export type MemoryMappedFile = MemoryMappedFile$instance & __MemoryMappedFile$vi
|
|
|
89
93
|
|
|
90
94
|
|
|
91
95
|
export interface MemoryMappedViewAccessor$instance extends UnmanagedMemoryAccessor {
|
|
96
|
+
readonly __tsonic_type_System_IO_MemoryMappedFiles_MemoryMappedViewAccessor: never;
|
|
97
|
+
|
|
98
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
99
|
+
|
|
92
100
|
readonly PointerOffset: long;
|
|
93
101
|
readonly SafeMemoryMappedViewHandle: SafeMemoryMappedViewHandle;
|
|
94
102
|
Dispose(disposing: boolean): void;
|
|
@@ -109,6 +117,11 @@ export type MemoryMappedViewAccessor = MemoryMappedViewAccessor$instance & __Mem
|
|
|
109
117
|
|
|
110
118
|
|
|
111
119
|
export interface MemoryMappedViewStream$instance extends UnmanagedMemoryStream {
|
|
120
|
+
readonly __tsonic_type_System_IO_MemoryMappedFiles_MemoryMappedViewStream: never;
|
|
121
|
+
|
|
122
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
123
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
124
|
+
|
|
112
125
|
readonly PointerOffset: long;
|
|
113
126
|
readonly SafeMemoryMappedViewHandle: SafeMemoryMappedViewHandle;
|
|
114
127
|
Dispose(disposing: boolean): void;
|