HTTP Namespace Missing

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;
 
J

Jon Skeet [C# MVP]

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top