HttpPostedFile postedFile = context.Request.Files[0];
Stream fs = postedFile.InputStream;
BinaryReader br = new BinaryReader(fs);
byte[] byte2 = br.ReadBytes((Int32)fs.Length);
HttpPostedFile postedFile = context.Request.Files[0];
Stream fs = postedFile.InputStream;
BinaryReader br = new BinaryReader(fs);
byte[] byte2 = br.ReadBytes((Int32)fs.Length);