HTTP Namespace Missing

  • Thread starter Thread starter Michael Looper
  • Start date Start date
M

Michael Looper

VS.NET says: "The type or namespace name 'Http' does not exist in the
class or namespace 'System.Runtime.Remoting.Channels' (are you missing
an assembly reference?)".

Any ideas on where that namespace went? The VS.NET docs say that's
how you get to the HttpChannel class.

I got this message on this line of code in C#:
using System.Runtime.Remoting.Channels.Http;
 
Michael Looper said:
VS.NET says: "The type or namespace name 'Http' does not exist in the
class or namespace 'System.Runtime.Remoting.Channels' (are you missing
an assembly reference?)".

Any ideas on where that namespace went? The VS.NET docs say that's
how you get to the HttpChannel class.

I got this message on this line of code in C#:
using System.Runtime.Remoting.Channels.Http;

Have you added a reference to the System.Runtime.Remoting.dll assembly?
 
Back
Top