1*f4ee7fbaSAndroid Build Coastguard Worker// <{[INJECTED CODE]}> 2*f4ee7fbaSAndroid Build Coastguard Worker public override bool CanRead { 3*f4ee7fbaSAndroid Build Coastguard Worker get {return true;} 4*f4ee7fbaSAndroid Build Coastguard Worker } 5*f4ee7fbaSAndroid Build Coastguard Worker 6*f4ee7fbaSAndroid Build Coastguard Worker public override bool CanSeek { 7*f4ee7fbaSAndroid Build Coastguard Worker get {return false;} 8*f4ee7fbaSAndroid Build Coastguard Worker } 9*f4ee7fbaSAndroid Build Coastguard Worker public override long Length { 10*f4ee7fbaSAndroid Build Coastguard Worker get {throw new System.NotSupportedException();} 11*f4ee7fbaSAndroid Build Coastguard Worker } 12*f4ee7fbaSAndroid Build Coastguard Worker public override long Position { 13*f4ee7fbaSAndroid Build Coastguard Worker get {throw new System.NotSupportedException();} 14*f4ee7fbaSAndroid Build Coastguard Worker set {throw new System.NotSupportedException();} 15*f4ee7fbaSAndroid Build Coastguard Worker } 16*f4ee7fbaSAndroid Build Coastguard Worker public override long Seek(long offset, System.IO.SeekOrigin origin) { 17*f4ee7fbaSAndroid Build Coastguard Worker throw new System.NotSupportedException(); 18*f4ee7fbaSAndroid Build Coastguard Worker } 19*f4ee7fbaSAndroid Build Coastguard Worker public override void SetLength(long value){ 20*f4ee7fbaSAndroid Build Coastguard Worker throw new System.NotSupportedException(); 21*f4ee7fbaSAndroid Build Coastguard Worker } 22*f4ee7fbaSAndroid Build Coastguard Worker 23*f4ee7fbaSAndroid Build Coastguard Worker public override bool CanWrite{get{return false;}} 24*f4ee7fbaSAndroid Build Coastguard Worker public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, 25*f4ee7fbaSAndroid Build Coastguard Worker int count, System.AsyncCallback callback, object state) { 26*f4ee7fbaSAndroid Build Coastguard Worker throw new System.NotSupportedException(); 27*f4ee7fbaSAndroid Build Coastguard Worker } 28*f4ee7fbaSAndroid Build Coastguard Worker public override void Write(byte[] buffer, int offset, int count) { 29*f4ee7fbaSAndroid Build Coastguard Worker throw new System.NotSupportedException(); 30*f4ee7fbaSAndroid Build Coastguard Worker } 31*f4ee7fbaSAndroid Build Coastguard Worker 32*f4ee7fbaSAndroid Build Coastguard Worker public override void Flush() {} 33