src/ICSharpCode.SharpZipLib/Lzw/LzwInputStream.cs [389:429]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#region Stream Overrides
///
/// Gets a value indicating whether the current stream supports reading
///
public override bool CanRead
{
get
{
return baseInputStream.CanRead;
}
}
///
/// Gets a value of false indicating seeking is not supported for this stream.
///
public override bool CanSeek
{
get
{
return false;
}
}
///
/// Gets a value of false indicating that this stream is not writeable.
///
public override bool CanWrite
{
get
{
return false;
}
}
///
/// A value representing the length of the stream in bytes.
///
public override long Length
{
get
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
src/ICSharpCode.SharpZipLib/Zip/Compression/Streams/InflaterInputStream.cs [499:539]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#region Stream Overrides
///
/// Gets a value indicating whether the current stream supports reading
///
public override bool CanRead
{
get
{
return baseInputStream.CanRead;
}
}
///
/// Gets a value of false indicating seeking is not supported for this stream.
///
public override bool CanSeek
{
get
{
return false;
}
}
///
/// Gets a value of false indicating that this stream is not writeable.
///
public override bool CanWrite
{
get
{
return false;
}
}
///
/// A value representing the length of the stream in bytes.
///
public override long Length
{
get
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -