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);
Use:
System.Text.Encoding.ASCII.GetString(buf);