I received the contents of a text file returned in binary values:
Byte[] buf = new Byte[size]; stream = File.InputStream; stream.Read(buf, 0, size);
Encoding.ASCII.GetString(buf);