injected_code.txt 979 B

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