hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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
// <{[INJECTED CODE]}>
       public override bool CanRead {
           get {return true;}
       }
 
       public override bool CanSeek {
           get {return false;}
       }
       public override long Length {
           get {throw new System.NotSupportedException();}
       }
       public override long Position {
           get {throw new System.NotSupportedException();}
           set {throw new System.NotSupportedException();}
       }
       public override long Seek(long offset, System.IO.SeekOrigin origin) {
           throw new System.NotSupportedException();
       }
       public override void SetLength(long value){
           throw new System.NotSupportedException();
       }
 
       public override bool CanWrite{get{return false;}}
       public override System.IAsyncResult BeginWrite(byte[] buffer, int offset,
               int count, System.AsyncCallback callback, object state) {
           throw new System.NotSupportedException();
       }
       public override void Write(byte[] buffer, int offset, int count) {
           throw new System.NotSupportedException();
       }
 
       public override void Flush() {}