Revert "Replaced NotImplementedException for streams"

This reverts commit 391663ac67.
This commit is contained in:
catester
2015-03-14 13:31:02 +02:00
parent 391663ac67
commit abed9eb2c9
4 changed files with 24 additions and 24 deletions

View File

@@ -35,28 +35,28 @@ namespace SharpCompress.IO
public override long Length
{
get { throw new NotSupportedException(); }
get { throw new NotImplementedException(); }
}
public override long Position
{
get { throw new NotSupportedException(); }
set { throw new NotSupportedException(); }
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
public override int Read(byte[] buffer, int offset, int count)
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override long Seek(long offset, SeekOrigin origin)
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override void SetLength(long value)
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override void Write(byte[] buffer, int offset, int count)

View File

@@ -21,17 +21,17 @@ namespace SharpCompress.IO
public override int Read()
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override int Read(byte[] buffer, int index, int count)
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override int Read(char[] buffer, int index, int count)
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override bool ReadBoolean()
@@ -57,12 +57,12 @@ namespace SharpCompress.IO
public override char ReadChar()
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override char[] ReadChars(int count)
{
throw new NotSupportedException();
throw new NotImplementedException();
}
#if !PORTABLE
@@ -115,7 +115,7 @@ namespace SharpCompress.IO
public override string ReadString()
{
throw new NotSupportedException();
throw new NotImplementedException();
}
public override ushort ReadUInt16()

View File

@@ -48,18 +48,18 @@ namespace SharpCompress.IO
public override void Flush()
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
public override long Length
{
get { throw new System.NotSupportedException(); }
get { throw new System.NotImplementedException(); }
}
public override long Position
{
get { throw new System.NotSupportedException(); }
set { throw new System.NotSupportedException(); }
get { throw new System.NotImplementedException(); }
set { throw new System.NotImplementedException(); }
}
public override int Read(byte[] buffer, int offset, int count)
@@ -78,17 +78,17 @@ namespace SharpCompress.IO
public override long Seek(long offset, SeekOrigin origin)
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
public override void SetLength(long value)
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
public override void Write(byte[] buffer, int offset, int count)
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
}
}

View File

@@ -84,12 +84,12 @@ namespace SharpCompress.IO
public override void Flush()
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
public override long Length
{
get { throw new System.NotSupportedException(); }
get { throw new System.NotImplementedException(); }
}
public override long Position
@@ -147,17 +147,17 @@ namespace SharpCompress.IO
public override long Seek(long offset, SeekOrigin origin)
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
public override void SetLength(long value)
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
public override void Write(byte[] buffer, int offset, int count)
{
throw new System.NotSupportedException();
throw new System.NotImplementedException();
}
}
}