Request BinaryRead in ASP.NET 5 (MVC6)
I had this code working in ASP.NET MVC 5, but I can't make it works in ASP.NET MVC 6 (ASP.NET 5) Can someone help me? public EmptyResult PayPalPaymentNotification(PayPalCheckoutInfo payPalCheckoutInfo) { PayPalListenerModel model = new PayPalListenerModel(); model._PayPalCheckoutInfo = payPalCheckoutInfo; byte[] parameters = Request.BinaryRead(Request.ContentLength); if (parameters != null) { model.GetStatus(parameters); } return new EmptyResult(); } The error is in: byte[] parameters = Request.BinaryRead(Request.ContentLength); HttpRequest does not contain a definition for BinaryRead and no