0

I'm trying to implement a web cam video recording upload as per this RecordRTC example.

The problem is that "Request.Files" throws the following compiling error as shown in the screenshot.

'HttpRequestMessage' does not contain a definition for 'Files' and no extension method 'Files' accepting a first argument of type 'HttpRequestMessage' could be found (are you missing a using directive or an assembly reference?)

enter image description here

What should I do in order to fix the error?

Alejandro Lozdziejski
  • 1,063
  • 4
  • 12
  • 30

1 Answers1

2

It should be from the System.Web.HttpContext.Current.Request.Files not from the HttpRequestMessage

SilentCoder
  • 1,970
  • 1
  • 16
  • 21