Ejemplo n.º 1
0
            public byte[] Read(int index, int length)
            {
                if (node == null)
                {
                    throw new Exception("Stream closed for Read()!");
                }

                return(node.Read(index, length));
            }
Ejemplo n.º 2
0
 public byte[] Read(int index, int length)
 {
     //read length bytes from file node starting at index return byte area w/ data
     if (node == null)
     {
         throw new Exception("Can't read from closed file stream");
     }
     return(node.Read(index, length));
 }
Ejemplo n.º 3
0
 public byte[] Read(int index, int length)
 {
     return(node.Read(index, length));
 }