forked from dotnet/java-interop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJava.Base-ref.cs
More file actions
6945 lines (6945 loc) · 521 KB
/
Java.Base-ref.cs
File metadata and controls
6945 lines (6945 loc) · 521 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// GenAPI Version: 7.0.6.10301
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Java.IO
{
[Java.Interop.JniTypeSignatureAttribute("java/io/BufferedInputStream", GenerateJavaPeer=false)]
public partial class BufferedInputStream : Java.IO.FilterInputStream
{
protected BufferedInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public BufferedInputStream(Java.IO.InputStream? @in) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public BufferedInputStream(Java.IO.InputStream? @in, int size) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
protected Java.Interop.JavaSByteArray? Buf { get { throw null; } set { } }
protected int Count { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
protected int Marklimit { get { throw null; } set { } }
protected int Markpos { get { throw null; } set { } }
protected int Pos { get { throw null; } set { } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/BufferedOutputStream", GenerateJavaPeer=false)]
public partial class BufferedOutputStream : Java.IO.FilterOutputStream
{
protected BufferedOutputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public BufferedOutputStream(Java.IO.OutputStream? @out) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public BufferedOutputStream(Java.IO.OutputStream? @out, int size) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
protected Java.Interop.JavaSByteArray? Buf { get { throw null; } set { } }
protected int Count { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/BufferedReader", GenerateJavaPeer=false)]
public partial class BufferedReader : Java.IO.Reader
{
protected BufferedReader(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public BufferedReader(Java.IO.Reader? @in) { }
public BufferedReader(Java.IO.Reader? @in, int sz) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("read", "([CII)I")]
public override int Read(Java.Interop.JavaCharArray? cbuf, int off, int len) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLine", "()Ljava/lang/String;")]
public virtual string? ReadLine() { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/BufferedWriter", GenerateJavaPeer=false)]
public partial class BufferedWriter : Java.IO.Writer
{
protected BufferedWriter(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public BufferedWriter(Java.IO.Writer? @out) { }
public BufferedWriter(Java.IO.Writer? @out, int sz) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("flush", "()V")]
public override void Flush() { }
[Java.Interop.JniMethodSignatureAttribute("newLine", "()V")]
public virtual void NewLine() { }
[Java.Interop.JniMethodSignatureAttribute("write", "([CII)V")]
public override void Write(Java.Interop.JavaCharArray? cbuf, int off, int len) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ByteArrayInputStream", GenerateJavaPeer=false)]
public partial class ByteArrayInputStream : Java.IO.InputStream
{
public ByteArrayInputStream(Java.Interop.JavaSByteArray? buf) { }
public ByteArrayInputStream(Java.Interop.JavaSByteArray? buf, int offset, int length) { }
protected ByteArrayInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
protected Java.Interop.JavaSByteArray? Buf { get { throw null; } set { } }
protected int Count { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
protected int MarkedPosition { get { throw null; } set { } }
protected int Pos { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("read", "()I")]
public override int Read() { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ByteArrayOutputStream", GenerateJavaPeer=false)]
public partial class ByteArrayOutputStream : Java.IO.OutputStream
{
public ByteArrayOutputStream() { }
protected ByteArrayOutputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public ByteArrayOutputStream(int size) { }
protected Java.Interop.JavaSByteArray? Buf { get { throw null; } set { } }
protected int Count { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("reset", "()V")]
public virtual void Reset() { }
[Java.Interop.JniMethodSignatureAttribute("size", "()I")]
public virtual int Size() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("toByteArray", "()[B")]
public virtual Java.Interop.JavaSByteArray? ToByteArray() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("toString", "(I)Ljava/lang/String;")]
[System.ObsoleteAttribute("deprecated")]
public virtual string? ToString(int hibyte) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("toString", "(Ljava/lang/String;)Ljava/lang/String;")]
public virtual string? ToString(string? charsetName) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("write", "(I)V")]
public override void Write(int b) { }
[Java.Interop.JniMethodSignatureAttribute("writeBytes", "([B)V")]
public virtual void WriteBytes(Java.Interop.JavaSByteArray? b) { }
[Java.Interop.JniMethodSignatureAttribute("writeTo", "(Ljava/io/OutputStream;)V")]
public virtual void WriteTo(Java.IO.OutputStream? @out) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/CharArrayReader", GenerateJavaPeer=false)]
public partial class CharArrayReader : Java.IO.Reader
{
public CharArrayReader(Java.Interop.JavaCharArray? buf) { }
public CharArrayReader(Java.Interop.JavaCharArray? buf, int offset, int length) { }
protected CharArrayReader(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
protected Java.Interop.JavaCharArray? Buf { get { throw null; } set { } }
protected int Count { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
protected int MarkedPos { get { throw null; } set { } }
protected int Pos { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("read", "([CII)I")]
public override int Read(Java.Interop.JavaCharArray? b, int off, int len) { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/CharArrayWriter", GenerateJavaPeer=false)]
public partial class CharArrayWriter : Java.IO.Writer
{
public CharArrayWriter() { }
protected CharArrayWriter(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public CharArrayWriter(int initialSize) { }
protected Java.Interop.JavaCharArray? Buf { get { throw null; } set { } }
protected int Count { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("flush", "()V")]
public override void Flush() { }
[Java.Interop.JniMethodSignatureAttribute("reset", "()V")]
public virtual void Reset() { }
[Java.Interop.JniMethodSignatureAttribute("size", "()I")]
public virtual int Size() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("toCharArray", "()[C")]
public virtual Java.Interop.JavaCharArray? ToCharArray() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("write", "([CII)V")]
public override void Write(Java.Interop.JavaCharArray? c, int off, int len) { }
[Java.Interop.JniMethodSignatureAttribute("writeTo", "(Ljava/io/Writer;)V")]
public virtual void WriteTo(Java.IO.Writer? @out) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/CharConversionException", GenerateJavaPeer=false)]
public partial class CharConversionException : Java.IO.IOException
{
public CharConversionException() { }
protected CharConversionException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public CharConversionException(string? s) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/Console", GenerateJavaPeer=false)]
public sealed partial class Console : Java.Lang.Object, Java.Interop.IJavaPeerable, Java.IO.IFlushable, System.IDisposable
{
internal Console() { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("flush", "()V")]
public void Flush() { }
[Java.Interop.JniMethodSignatureAttribute("format", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/Console;")]
public Java.IO.Console? Format(string? fmt, params Java.Lang.Object[]? args) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("printf", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/Console;")]
public Java.IO.Console? Printf(string? format, params Java.Lang.Object[]? args) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("reader", "()Ljava/io/Reader;")]
public Java.IO.Reader? Reader() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLine", "()Ljava/lang/String;")]
public string? ReadLine() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLine", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;")]
public string? ReadLine(string? fmt, params Java.Lang.Object[]? args) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readPassword", "()[C")]
public Java.Interop.JavaCharArray? ReadPassword() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readPassword", "(Ljava/lang/String;[Ljava/lang/Object;)[C")]
public Java.Interop.JavaCharArray? ReadPassword(string? fmt, params Java.Lang.Object[]? args) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("writer", "()Ljava/io/PrintWriter;")]
public Java.IO.PrintWriter? Writer() { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/DataInputStream", GenerateJavaPeer=false)]
public partial class DataInputStream : Java.IO.FilterInputStream, Java.Interop.IJavaPeerable, Java.IO.IDataInput, System.IDisposable
{
protected DataInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public DataInputStream(Java.IO.InputStream? @in) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("read", "([B)I")]
public sealed override int Read(Java.Interop.JavaSByteArray? b) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("read", "([BII)I")]
public sealed override int Read(Java.Interop.JavaSByteArray? b, int off, int len) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readBoolean", "()Z")]
public bool ReadBoolean() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readByte", "()B")]
public sbyte ReadByte() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readChar", "()C")]
public char ReadChar() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readDouble", "()D")]
public double ReadDouble() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readFloat", "()F")]
public float ReadFloat() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readFully", "([B)V")]
public void ReadFully(Java.Interop.JavaSByteArray? b) { }
[Java.Interop.JniMethodSignatureAttribute("readFully", "([BII)V")]
public void ReadFully(Java.Interop.JavaSByteArray? b, int off, int len) { }
[Java.Interop.JniMethodSignatureAttribute("readInt", "()I")]
public int ReadInt() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLine", "()Ljava/lang/String;")]
[System.ObsoleteAttribute("deprecated")]
public string? ReadLine() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLong", "()J")]
public long ReadLong() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readShort", "()S")]
public short ReadShort() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUnsignedByte", "()I")]
public int ReadUnsignedByte() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUnsignedShort", "()I")]
public int ReadUnsignedShort() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUTF", "()Ljava/lang/String;")]
public string? ReadUTF() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUTF", "(Ljava/io/DataInput;)Ljava/lang/String;")]
public static string? ReadUTF(Java.IO.IDataInput? @in) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("skipBytes", "(I)I")]
public int SkipBytes(int n) { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/DataOutputStream", GenerateJavaPeer=false)]
public partial class DataOutputStream : Java.IO.FilterOutputStream, Java.Interop.IJavaPeerable, Java.IO.IDataOutput, System.IDisposable
{
protected DataOutputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public DataOutputStream(Java.IO.OutputStream? @out) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
protected int Written { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("size", "()I")]
public int Size() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("writeBoolean", "(Z)V")]
public void WriteBoolean(bool v) { }
[Java.Interop.JniMethodSignatureAttribute("writeByte", "(I)V")]
public void WriteByte(int v) { }
[Java.Interop.JniMethodSignatureAttribute("writeBytes", "(Ljava/lang/String;)V")]
public void WriteBytes(string? s) { }
[Java.Interop.JniMethodSignatureAttribute("writeChar", "(I)V")]
public void WriteChar(int v) { }
[Java.Interop.JniMethodSignatureAttribute("writeChars", "(Ljava/lang/String;)V")]
public void WriteChars(string? s) { }
[Java.Interop.JniMethodSignatureAttribute("writeDouble", "(D)V")]
public void WriteDouble(double v) { }
[Java.Interop.JniMethodSignatureAttribute("writeFloat", "(F)V")]
public void WriteFloat(float v) { }
[Java.Interop.JniMethodSignatureAttribute("writeInt", "(I)V")]
public void WriteInt(int v) { }
[Java.Interop.JniMethodSignatureAttribute("writeLong", "(J)V")]
public void WriteLong(long v) { }
[Java.Interop.JniMethodSignatureAttribute("writeShort", "(I)V")]
public void WriteShort(int v) { }
[Java.Interop.JniMethodSignatureAttribute("writeUTF", "(Ljava/lang/String;)V")]
public void WriteUTF(string? str) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/EOFException", GenerateJavaPeer=false)]
public partial class EOFException : Java.IO.IOException
{
public EOFException() { }
protected EOFException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public EOFException(string? s) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/File", GenerateJavaPeer=false)]
public partial class File : Java.Lang.Object, Java.Interop.IJavaPeerable, Java.IO.ISerializable, Java.Lang.IComparable, System.IDisposable
{
protected File(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public File(Java.IO.File? parent, string? child) { }
public File(string? pathname) { }
public File(string? parent, string? child) { }
public virtual Java.IO.File? AbsoluteFile { get { throw null; } }
public virtual string? AbsolutePath { get { throw null; } }
public virtual Java.IO.File? CanonicalFile { get { throw null; } }
public virtual string? CanonicalPath { get { throw null; } }
public virtual long FreeSpace { get { throw null; } }
public virtual bool IsAbsolute { get { throw null; } }
public virtual bool IsDirectory { get { throw null; } }
public virtual bool IsFile { get { throw null; } }
public virtual bool IsHidden { get { throw null; } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public virtual string? Name { get { throw null; } }
public virtual string? Parent { get { throw null; } }
public virtual Java.IO.File? ParentFile { get { throw null; } }
public virtual string? Path { get { throw null; } }
public static string? PathSeparator { get { throw null; } }
public static char PathSeparatorChar { get { throw null; } }
public static string? Separator { get { throw null; } }
public static char SeparatorChar { get { throw null; } }
public virtual long TotalSpace { get { throw null; } }
public virtual long UsableSpace { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("canExecute", "()Z")]
public virtual bool CanExecute() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("canRead", "()Z")]
public virtual bool CanRead() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("canWrite", "()Z")]
public virtual bool CanWrite() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("compareTo", "(Ljava/io/File;)I")]
public virtual int CompareTo(Java.IO.File? pathname) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("createNewFile", "()Z")]
public virtual bool CreateNewFile() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("createTempFile", "(Ljava/lang/String;Ljava/lang/String;)Ljava/io/File;")]
public static Java.IO.File? CreateTempFile(string? prefix, string? suffix) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("createTempFile", "(Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File;")]
public static Java.IO.File? CreateTempFile(string? prefix, string? suffix, Java.IO.File? directory) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("delete", "()Z")]
public virtual bool Delete() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("deleteOnExit", "()V")]
public virtual void DeleteOnExit() { }
[Java.Interop.JniMethodSignatureAttribute("exists", "()Z")]
public virtual bool Exists() { throw null; }
int Java.Lang.IComparable.CompareTo(Java.Lang.Object? p0) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("lastModified", "()J")]
public virtual long LastModified() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("length", "()J")]
public virtual long Length() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("list", "()[Ljava/lang/String;")]
public virtual Java.Interop.JavaObjectArray<string>? List() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("list", "(Ljava/io/FilenameFilter;)[Ljava/lang/String;")]
public virtual Java.Interop.JavaObjectArray<string>? List(Java.IO.IFilenameFilter? filter) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("listFiles", "()[Ljava/io/File;")]
public virtual Java.Interop.JavaObjectArray<Java.IO.File>? ListFiles() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("listFiles", "(Ljava/io/FileFilter;)[Ljava/io/File;")]
public virtual Java.Interop.JavaObjectArray<Java.IO.File>? ListFiles(Java.IO.IFileFilter? filter) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("listFiles", "(Ljava/io/FilenameFilter;)[Ljava/io/File;")]
public virtual Java.Interop.JavaObjectArray<Java.IO.File>? ListFiles(Java.IO.IFilenameFilter? filter) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("listRoots", "()[Ljava/io/File;")]
public static Java.Interop.JavaObjectArray<Java.IO.File>? ListRoots() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("mkdir", "()Z")]
public virtual bool Mkdir() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("mkdirs", "()Z")]
public virtual bool Mkdirs() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("renameTo", "(Ljava/io/File;)Z")]
public virtual bool RenameTo(Java.IO.File? dest) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setExecutable", "(Z)Z")]
public virtual bool SetExecutable(bool executable) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setExecutable", "(ZZ)Z")]
public virtual bool SetExecutable(bool executable, bool ownerOnly) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setLastModified", "(J)Z")]
public virtual bool SetLastModified(long time) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setReadable", "(Z)Z")]
public virtual bool SetReadable(bool readable) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setReadable", "(ZZ)Z")]
public virtual bool SetReadable(bool readable, bool ownerOnly) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setReadOnly", "()Z")]
public virtual bool SetReadOnly() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setWritable", "(Z)Z")]
public virtual bool SetWritable(bool writable) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("setWritable", "(ZZ)Z")]
public virtual bool SetWritable(bool writable, bool ownerOnly) { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileDescriptor", GenerateJavaPeer=false)]
public sealed partial class FileDescriptor : Java.Lang.Object
{
public FileDescriptor() { }
public static Java.IO.FileDescriptor? Err { get { throw null; } }
public static Java.IO.FileDescriptor? In { get { throw null; } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public static Java.IO.FileDescriptor? Out { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("sync", "()V")]
public void Sync() { }
[Java.Interop.JniMethodSignatureAttribute("valid", "()Z")]
public bool Valid() { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileInputStream", GenerateJavaPeer=false)]
public partial class FileInputStream : Java.IO.InputStream
{
protected FileInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public FileInputStream(Java.IO.File? file) { }
public FileInputStream(Java.IO.FileDescriptor? fdObj) { }
public FileInputStream(string? name) { }
public Java.IO.FileDescriptor? FD { get { throw null; } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("read", "()I")]
public override int Read() { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileNotFoundException", GenerateJavaPeer=false)]
public partial class FileNotFoundException : Java.IO.IOException
{
public FileNotFoundException() { }
protected FileNotFoundException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public FileNotFoundException(string? s) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileOutputStream", GenerateJavaPeer=false)]
public partial class FileOutputStream : Java.IO.OutputStream
{
protected FileOutputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public FileOutputStream(Java.IO.File? file) { }
public FileOutputStream(Java.IO.File? file, bool append) { }
public FileOutputStream(Java.IO.FileDescriptor? fdObj) { }
public FileOutputStream(string? name) { }
public FileOutputStream(string? name, bool append) { }
public Java.IO.FileDescriptor? FD { get { throw null; } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("write", "(I)V")]
public override void Write(int b) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileReader", GenerateJavaPeer=false)]
public partial class FileReader : Java.IO.InputStreamReader
{
protected FileReader(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileReader(Java.IO.File? file) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileReader(Java.IO.FileDescriptor? fd) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileReader(string? fileName) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileWriter", GenerateJavaPeer=false)]
public partial class FileWriter : Java.IO.OutputStreamWriter
{
protected FileWriter(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileWriter(Java.IO.File? file) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileWriter(Java.IO.File? file, bool append) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileWriter(Java.IO.FileDescriptor? fd) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileWriter(string? fileName) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public FileWriter(string? fileName, bool append) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FilterInputStream", GenerateJavaPeer=false)]
public partial class FilterInputStream : Java.IO.InputStream
{
protected FilterInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
protected FilterInputStream(Java.IO.InputStream? @in) { }
protected Java.IO.InputStream? In { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("read", "()I")]
public override int Read() { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FilterOutputStream", GenerateJavaPeer=false)]
public partial class FilterOutputStream : Java.IO.OutputStream
{
protected FilterOutputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public FilterOutputStream(Java.IO.OutputStream? @out) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
protected Java.IO.OutputStream? Out { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("write", "(I)V")]
public override void Write(int b) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FilterReader", GenerateJavaPeer=false)]
public abstract partial class FilterReader : Java.IO.Reader
{
protected FilterReader(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
protected FilterReader(Java.IO.Reader? @in) { }
protected Java.IO.Reader? In { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("read", "([CII)I")]
public override int Read(Java.Interop.JavaCharArray? cbuf, int off, int len) { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FilterWriter", GenerateJavaPeer=false)]
public abstract partial class FilterWriter : Java.IO.Writer
{
protected FilterWriter(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
protected FilterWriter(Java.IO.Writer? @out) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
protected Java.IO.Writer? Out { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("flush", "()V")]
public override void Flush() { }
[Java.Interop.JniMethodSignatureAttribute("write", "([CII)V")]
public override void Write(Java.Interop.JavaCharArray? cbuf, int off, int len) { }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/Closeable", GenerateJavaPeer=false)]
public partial interface ICloseable : Java.Interop.IJavaPeerable, Java.Lang.IAutoCloseable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
void Java.Lang.IAutoCloseable.Close();
}
[Java.Interop.JniTypeSignatureAttribute("java/io/DataInput", GenerateJavaPeer=false)]
public partial interface IDataInput : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("readBoolean", "()Z")]
bool ReadBoolean();
[Java.Interop.JniMethodSignatureAttribute("readByte", "()B")]
sbyte ReadByte();
[Java.Interop.JniMethodSignatureAttribute("readChar", "()C")]
char ReadChar();
[Java.Interop.JniMethodSignatureAttribute("readDouble", "()D")]
double ReadDouble();
[Java.Interop.JniMethodSignatureAttribute("readFloat", "()F")]
float ReadFloat();
[Java.Interop.JniMethodSignatureAttribute("readFully", "([B)V")]
void ReadFully(Java.Interop.JavaSByteArray? p0);
[Java.Interop.JniMethodSignatureAttribute("readFully", "([BII)V")]
void ReadFully(Java.Interop.JavaSByteArray? p0, int p1, int p2);
[Java.Interop.JniMethodSignatureAttribute("readInt", "()I")]
int ReadInt();
[Java.Interop.JniMethodSignatureAttribute("readLine", "()Ljava/lang/String;")]
string? ReadLine();
[Java.Interop.JniMethodSignatureAttribute("readLong", "()J")]
long ReadLong();
[Java.Interop.JniMethodSignatureAttribute("readShort", "()S")]
short ReadShort();
[Java.Interop.JniMethodSignatureAttribute("readUnsignedByte", "()I")]
int ReadUnsignedByte();
[Java.Interop.JniMethodSignatureAttribute("readUnsignedShort", "()I")]
int ReadUnsignedShort();
[Java.Interop.JniMethodSignatureAttribute("readUTF", "()Ljava/lang/String;")]
string? ReadUTF();
[Java.Interop.JniMethodSignatureAttribute("skipBytes", "(I)I")]
int SkipBytes(int p0);
}
[Java.Interop.JniTypeSignatureAttribute("java/io/DataOutput", GenerateJavaPeer=false)]
public partial interface IDataOutput : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("write", "([B)V")]
void Write(Java.Interop.JavaSByteArray? p0);
[Java.Interop.JniMethodSignatureAttribute("write", "([BII)V")]
void Write(Java.Interop.JavaSByteArray? p0, int p1, int p2);
[Java.Interop.JniMethodSignatureAttribute("write", "(I)V")]
void Write(int p0);
[Java.Interop.JniMethodSignatureAttribute("writeBoolean", "(Z)V")]
void WriteBoolean(bool p0);
[Java.Interop.JniMethodSignatureAttribute("writeByte", "(I)V")]
void WriteByte(int p0);
[Java.Interop.JniMethodSignatureAttribute("writeBytes", "(Ljava/lang/String;)V")]
void WriteBytes(string? p0);
[Java.Interop.JniMethodSignatureAttribute("writeChar", "(I)V")]
void WriteChar(int p0);
[Java.Interop.JniMethodSignatureAttribute("writeChars", "(Ljava/lang/String;)V")]
void WriteChars(string? p0);
[Java.Interop.JniMethodSignatureAttribute("writeDouble", "(D)V")]
void WriteDouble(double p0);
[Java.Interop.JniMethodSignatureAttribute("writeFloat", "(F)V")]
void WriteFloat(float p0);
[Java.Interop.JniMethodSignatureAttribute("writeInt", "(I)V")]
void WriteInt(int p0);
[Java.Interop.JniMethodSignatureAttribute("writeLong", "(J)V")]
void WriteLong(long p0);
[Java.Interop.JniMethodSignatureAttribute("writeShort", "(I)V")]
void WriteShort(int p0);
[Java.Interop.JniMethodSignatureAttribute("writeUTF", "(Ljava/lang/String;)V")]
void WriteUTF(string? p0);
}
[Java.Interop.JniTypeSignatureAttribute("java/io/Externalizable", GenerateJavaPeer=false)]
public partial interface IExternalizable : Java.Interop.IJavaPeerable, Java.IO.ISerializable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("readExternal", "(Ljava/io/ObjectInput;)V")]
void ReadExternal(Java.IO.IObjectInput? p0);
[Java.Interop.JniMethodSignatureAttribute("writeExternal", "(Ljava/io/ObjectOutput;)V")]
void WriteExternal(Java.IO.IObjectOutput? p0);
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FileFilter", GenerateJavaPeer=false)]
public partial interface IFileFilter : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("accept", "(Ljava/io/File;)Z")]
bool Accept(Java.IO.File? p0);
}
[Java.Interop.JniTypeSignatureAttribute("java/io/FilenameFilter", GenerateJavaPeer=false)]
public partial interface IFilenameFilter : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("accept", "(Ljava/io/File;Ljava/lang/String;)Z")]
bool Accept(Java.IO.File? p0, string? p1);
}
[Java.Interop.JniTypeSignatureAttribute("java/io/Flushable", GenerateJavaPeer=false)]
public partial interface IFlushable : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("flush", "()V")]
void Flush();
}
[Java.Interop.JniTypeSignatureAttribute("java/io/InputStream", GenerateJavaPeer=false)]
public abstract partial class InputStream : Java.Lang.Object, Java.Interop.IJavaPeerable, Java.IO.ICloseable, Java.Lang.IAutoCloseable, System.IDisposable
{
public InputStream() { }
protected InputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("available", "()I")]
public virtual int Available() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public virtual void Close() { }
[Java.Interop.JniMethodSignatureAttribute("mark", "(I)V")]
public virtual void Mark(int readlimit) { }
[Java.Interop.JniMethodSignatureAttribute("markSupported", "()Z")]
public virtual bool MarkSupported() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("nullInputStream", "()Ljava/io/InputStream;")]
public static Java.IO.InputStream? NullInputStream() { throw null; }
public abstract int Read();
[Java.Interop.JniMethodSignatureAttribute("read", "([B)I")]
public virtual int Read(Java.Interop.JavaSByteArray? b) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("read", "([BII)I")]
public virtual int Read(Java.Interop.JavaSByteArray? b, int off, int len) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readAllBytes", "()[B")]
public virtual Java.Interop.JavaSByteArray? ReadAllBytes() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readNBytes", "([BII)I")]
public virtual int ReadNBytes(Java.Interop.JavaSByteArray? b, int off, int len) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readNBytes", "(I)[B")]
public virtual Java.Interop.JavaSByteArray? ReadNBytes(int len) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("reset", "()V")]
public virtual void Reset() { }
[Java.Interop.JniMethodSignatureAttribute("skip", "(J)J")]
public virtual long Skip(long n) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("transferTo", "(Ljava/io/OutputStream;)J")]
public virtual long TransferTo(Java.IO.OutputStream? @out) { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/InputStreamReader", GenerateJavaPeer=false)]
public partial class InputStreamReader : Java.IO.Reader
{
protected InputStreamReader(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public InputStreamReader(Java.IO.InputStream? @in) { }
public InputStreamReader(Java.IO.InputStream? @in, string? charsetName) { }
public virtual string? Encoding { get { throw null; } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
public override void Close() { }
[Java.Interop.JniMethodSignatureAttribute("read", "([CII)I")]
public override int Read(Java.Interop.JavaCharArray? cbuf, int offset, int length) { throw null; }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/InterruptedIOException", GenerateJavaPeer=false)]
public partial class InterruptedIOException : Java.IO.IOException
{
public InterruptedIOException() { }
protected InterruptedIOException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public InterruptedIOException(string? s) { }
public int BytesTransferred { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/InvalidClassException", GenerateJavaPeer=false)]
public partial class InvalidClassException : Java.IO.ObjectStreamException
{
protected InvalidClassException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public InvalidClassException(string? reason) { }
public InvalidClassException(string? cname, string? reason) { }
public string? Classname { get { throw null; } set { } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/InvalidObjectException", GenerateJavaPeer=false)]
public partial class InvalidObjectException : Java.IO.ObjectStreamException
{
protected InvalidObjectException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public InvalidObjectException(string? reason) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInput", GenerateJavaPeer=false)]
public partial interface IObjectInput : Java.Interop.IJavaPeerable, Java.IO.IDataInput, Java.Lang.IAutoCloseable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("available", "()I")]
int Available();
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
void Java.Lang.IAutoCloseable.Close();
[Java.Interop.JniMethodSignatureAttribute("read", "()I")]
int Read();
[Java.Interop.JniMethodSignatureAttribute("read", "([B)I")]
int Read(Java.Interop.JavaSByteArray? p0);
[Java.Interop.JniMethodSignatureAttribute("read", "([BII)I")]
int Read(Java.Interop.JavaSByteArray? p0, int p1, int p2);
[Java.Interop.JniMethodSignatureAttribute("readObject", "()Ljava/lang/Object;")]
Java.Lang.Object? ReadObject();
[Java.Interop.JniMethodSignatureAttribute("skip", "(J)J")]
long Skip(long p0);
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputFilter", GenerateJavaPeer=false)]
public partial interface IObjectInputFilter : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("checkInput", "(Ljava/io/ObjectInputFilter$FilterInfo;)Ljava/io/ObjectInputFilter$Status;")]
Java.IO.IObjectInputFilter.Status? CheckInput(Java.IO.IObjectInputFilter.IFilterInfo? p0);
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputFilter$Config", GenerateJavaPeer=false)]
public sealed partial class Config : Java.Lang.Object
{
internal Config() { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public static Java.IO.IObjectInputFilter? SerialFilter { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("createFilter", "(Ljava/lang/String;)Ljava/io/ObjectInputFilter;")]
public static Java.IO.IObjectInputFilter? CreateFilter(string? pattern) { throw null; }
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputFilter$Config$Global", GenerateJavaPeer=false)]
public sealed partial class Global : Java.Lang.Object, Java.Interop.IJavaPeerable, Java.IO.IObjectInputFilter, System.IDisposable
{
internal Global() { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("checkInput", "(Ljava/io/ObjectInputFilter$FilterInfo;)Ljava/io/ObjectInputFilter$Status;")]
public Java.IO.IObjectInputFilter.Status? CheckInput(Java.IO.IObjectInputFilter.IFilterInfo? filterInfo) { throw null; }
}
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputFilter$FilterInfo", GenerateJavaPeer=false)]
public partial interface IFilterInfo : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("arrayLength", "()J")]
long ArrayLength();
[Java.Interop.JniMethodSignatureAttribute("depth", "()J")]
long Depth();
[Java.Interop.JniMethodSignatureAttribute("references", "()J")]
long References();
[Java.Interop.JniMethodSignatureAttribute("serialClass", "()Ljava/lang/Class;")]
Java.Lang.Class? SerialClass();
[Java.Interop.JniMethodSignatureAttribute("streamBytes", "()J")]
long StreamBytes();
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputFilter$Status", GenerateJavaPeer=false)]
public sealed partial class Status : Java.Lang.Enum
{
internal Status() : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public static Java.IO.IObjectInputFilter.Status? Allowed { get { throw null; } }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public static Java.IO.IObjectInputFilter.Status? Rejected { get { throw null; } }
public static Java.IO.IObjectInputFilter.Status? Undecided { get { throw null; } }
[Java.Interop.JniMethodSignatureAttribute("valueOf", "(Ljava/lang/String;)Ljava/io/ObjectInputFilter$Status;")]
public static Java.IO.IObjectInputFilter.Status? ValueOf(string? name) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("values", "()[Ljava/io/ObjectInputFilter$Status;")]
public static Java.Interop.JavaObjectArray<Java.IO.IObjectInputFilter.Status>? Values() { throw null; }
}
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputValidation", GenerateJavaPeer=false)]
public partial interface IObjectInputValidation : Java.Interop.IJavaPeerable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("validateObject", "()V")]
void ValidateObject();
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectOutput", GenerateJavaPeer=false)]
public partial interface IObjectOutput : Java.Interop.IJavaPeerable, Java.IO.IDataOutput, Java.Lang.IAutoCloseable, System.IDisposable
{
[Java.Interop.JniMethodSignatureAttribute("flush", "()V")]
void Flush();
[Java.Interop.JniMethodSignatureAttribute("write", "([B)V")]
void Java.IO.IDataOutput.Write(Java.Interop.JavaSByteArray? p0);
[Java.Interop.JniMethodSignatureAttribute("write", "([BII)V")]
void Java.IO.IDataOutput.Write(Java.Interop.JavaSByteArray? p0, int p1, int p2);
[Java.Interop.JniMethodSignatureAttribute("write", "(I)V")]
void Java.IO.IDataOutput.Write(int p0);
[Java.Interop.JniMethodSignatureAttribute("close", "()V")]
void Java.Lang.IAutoCloseable.Close();
[Java.Interop.JniMethodSignatureAttribute("writeObject", "(Ljava/lang/Object;)V")]
void WriteObject(Java.Lang.Object? p0);
}
public partial interface IObjectStreamConstants
{
public const int BaseWireHandle = 8257536;
public const int ProtocolVersion1 = 1;
public const int ProtocolVersion2 = 2;
public const sbyte ScBlockData = (sbyte)8;
public const sbyte ScEnum = (sbyte)16;
public const sbyte ScExternalizable = (sbyte)4;
public const sbyte ScSerializable = (sbyte)2;
public const sbyte ScWriteMethod = (sbyte)1;
public const short StreamMagic = (short)-21267;
public const short StreamVersion = (short)5;
public const sbyte TcArray = (sbyte)117;
public const sbyte TcBase = (sbyte)112;
public const sbyte TcBlockdata = (sbyte)119;
public const sbyte TcBlockdatalong = (sbyte)122;
public const sbyte TcClass = (sbyte)118;
public const sbyte TcClassdesc = (sbyte)114;
public const sbyte TcEndblockdata = (sbyte)120;
public const sbyte TcEnum = (sbyte)126;
public const sbyte TcException = (sbyte)123;
public const sbyte TcLongstring = (sbyte)124;
public const sbyte TcMax = (sbyte)126;
public const sbyte TcNull = (sbyte)112;
public const sbyte TcObject = (sbyte)115;
public const sbyte TcProxyclassdesc = (sbyte)125;
public const sbyte TcReference = (sbyte)113;
public const sbyte TcReset = (sbyte)121;
public const sbyte TcString = (sbyte)116;
}
[Java.Interop.JniTypeSignatureAttribute("java/io/IOError", GenerateJavaPeer=false)]
public partial class IOError : Java.Lang.Error
{
protected IOError(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public IOError(Java.Lang.Throwable? cause) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/IOException", GenerateJavaPeer=false)]
public partial class IOException : Java.Lang.Exception
{
public IOException() { }
protected IOException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public IOException(Java.Lang.Throwable? cause) { }
public IOException(string? message) { }
public IOException(string? message, Java.Lang.Throwable? cause) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/Serializable", GenerateJavaPeer=false)]
public partial interface ISerializable : Java.Interop.IJavaPeerable, System.IDisposable
{
}
[Java.Interop.JniTypeSignatureAttribute("java/io/LineNumberInputStream", GenerateJavaPeer=false)]
[System.ObsoleteAttribute("This class is obsoleted in this android platform")]
public partial class LineNumberInputStream : Java.IO.FilterInputStream
{
protected LineNumberInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public LineNumberInputStream(Java.IO.InputStream? @in) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public virtual int LineNumber { get { throw null; } set { } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/LineNumberReader", GenerateJavaPeer=false)]
public partial class LineNumberReader : Java.IO.BufferedReader
{
protected LineNumberReader(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public LineNumberReader(Java.IO.Reader? @in) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
public LineNumberReader(Java.IO.Reader? @in, int sz) : base (default(Java.Interop.JniObjectReference), default(Java.Interop.JniObjectReferenceOptions)) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public virtual int LineNumber { get { throw null; } set { } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/NotActiveException", GenerateJavaPeer=false)]
public partial class NotActiveException : Java.IO.ObjectStreamException
{
public NotActiveException() { }
protected NotActiveException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public NotActiveException(string? reason) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/NotSerializableException", GenerateJavaPeer=false)]
public partial class NotSerializableException : Java.IO.ObjectStreamException
{
public NotSerializableException() { }
protected NotSerializableException(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public NotSerializableException(string? classname) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
}
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputStream", GenerateJavaPeer=false)]
public partial class ObjectInputStream : Java.IO.InputStream, Java.Interop.IJavaPeerable, Java.IO.IDataInput, Java.IO.IObjectInput, Java.Lang.IAutoCloseable, System.IDisposable
{
protected ObjectInputStream() { }
protected ObjectInputStream(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
public ObjectInputStream(Java.IO.InputStream? @in) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public Java.IO.IObjectInputFilter? ObjectInputFilter { get { throw null; } set { } }
[Java.Interop.JniMethodSignatureAttribute("defaultReadObject", "()V")]
public virtual void DefaultReadObject() { }
[Java.Interop.JniMethodSignatureAttribute("enableResolveObject", "(Z)Z")]
protected virtual bool EnableResolveObject(bool enable) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("read", "()I")]
public override int Read() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readBoolean", "()Z")]
public virtual bool ReadBoolean() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readByte", "()B")]
public virtual sbyte ReadByte() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readChar", "()C")]
public virtual char ReadChar() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readClassDescriptor", "()Ljava/io/ObjectStreamClass;")]
protected virtual Java.IO.ObjectStreamClass? ReadClassDescriptor() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readDouble", "()D")]
public virtual double ReadDouble() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readFields", "()Ljava/io/ObjectInputStream$GetField;")]
public virtual Java.IO.ObjectInputStream.GetField? ReadFields() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readFloat", "()F")]
public virtual float ReadFloat() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readFully", "([B)V")]
public virtual void ReadFully(Java.Interop.JavaSByteArray? buf) { }
[Java.Interop.JniMethodSignatureAttribute("readFully", "([BII)V")]
public virtual void ReadFully(Java.Interop.JavaSByteArray? buf, int off, int len) { }
[Java.Interop.JniMethodSignatureAttribute("readInt", "()I")]
public virtual int ReadInt() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLine", "()Ljava/lang/String;")]
[System.ObsoleteAttribute("deprecated")]
public virtual string? ReadLine() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readLong", "()J")]
public virtual long ReadLong() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readObject", "()Ljava/lang/Object;")]
public Java.Lang.Object? ReadObject() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readObjectOverride", "()Ljava/lang/Object;")]
protected virtual Java.Lang.Object? ReadObjectOverride() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readShort", "()S")]
public virtual short ReadShort() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readStreamHeader", "()V")]
protected virtual void ReadStreamHeader() { }
[Java.Interop.JniMethodSignatureAttribute("readUnshared", "()Ljava/lang/Object;")]
public virtual Java.Lang.Object? ReadUnshared() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUnsignedByte", "()I")]
public virtual int ReadUnsignedByte() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUnsignedShort", "()I")]
public virtual int ReadUnsignedShort() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("readUTF", "()Ljava/lang/String;")]
public virtual string? ReadUTF() { throw null; }
[Java.Interop.JniMethodSignatureAttribute("registerValidation", "(Ljava/io/ObjectInputValidation;I)V")]
public virtual void RegisterValidation(Java.IO.IObjectInputValidation? obj, int prio) { }
[Java.Interop.JniMethodSignatureAttribute("resolveClass", "(Ljava/io/ObjectStreamClass;)Ljava/lang/Class;")]
protected virtual Java.Lang.Class? ResolveClass(Java.IO.ObjectStreamClass? desc) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("resolveObject", "(Ljava/lang/Object;)Ljava/lang/Object;")]
protected virtual Java.Lang.Object? ResolveObject(Java.Lang.Object? obj) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("resolveProxyClass", "([Ljava/lang/String;)Ljava/lang/Class;")]
protected virtual Java.Lang.Class? ResolveProxyClass(Java.Interop.JavaObjectArray<string>? interfaces) { throw null; }
[Java.Interop.JniMethodSignatureAttribute("skipBytes", "(I)I")]
public virtual int SkipBytes(int len) { throw null; }
[Java.Interop.JniTypeSignatureAttribute("java/io/ObjectInputStream$GetField", GenerateJavaPeer=false)]
public abstract partial class GetField : Java.Lang.Object
{
public GetField() { }
protected GetField(ref Java.Interop.JniObjectReference reference, Java.Interop.JniObjectReferenceOptions options) { }
[System.ComponentModel.EditorBrowsableAttribute(1)]
[System.Diagnostics.DebuggerBrowsableAttribute(0)]
public override Java.Interop.JniPeerMembers JniPeerMembers { get { throw null; } }
public abstract Java.IO.ObjectStreamClass? ObjectStreamClass { [Java.Interop.JniMethodSignatureAttribute("getObjectStreamClass", "()Ljava/io/ObjectStreamClass;")] get; }
public abstract bool Defaulted(string? p0);
public abstract Java.Lang.Object? Get(string? p0, Java.Lang.Object? p1);
public abstract bool Get(string? p0, bool p1);
public abstract char Get(string? p0, char p1);
public abstract double Get(string? p0, double p1);
public abstract short Get(string? p0, short p1);
public abstract int Get(string? p0, int p1);
public abstract long Get(string? p0, long p1);
public abstract sbyte Get(string? p0, sbyte p1);
public abstract float Get(string? p0, float p1);
}
public static partial class InterfaceConsts
{
public const int BaseWireHandle = 8257536;
public const int ProtocolVersion1 = 1;
public const int ProtocolVersion2 = 2;
public const sbyte ScBlockData = (sbyte)8;
public const sbyte ScEnum = (sbyte)16;
public const sbyte ScExternalizable = (sbyte)4;
public const sbyte ScSerializable = (sbyte)2;
public const sbyte ScWriteMethod = (sbyte)1;
public const short StreamMagic = (short)-21267;
public const short StreamVersion = (short)5;
public const sbyte TcArray = (sbyte)117;
public const sbyte TcBase = (sbyte)112;
public const sbyte TcBlockdata = (sbyte)119;
public const sbyte TcBlockdatalong = (sbyte)122;
public const sbyte TcClass = (sbyte)118;
public const sbyte TcClassdesc = (sbyte)114;
public const sbyte TcEndblockdata = (sbyte)120;
public const sbyte TcEnum = (sbyte)126;
public const sbyte TcException = (sbyte)123;
public const sbyte TcLongstring = (sbyte)124;
public const sbyte TcMax = (sbyte)126;
public const sbyte TcNull = (sbyte)112;
public const sbyte TcObject = (sbyte)115;
public const sbyte TcProxyclassdesc = (sbyte)125;
public const sbyte TcReference = (sbyte)113;
public const sbyte TcReset = (sbyte)121;
public const sbyte TcString = (sbyte)116;
}
}