Could not location Channels.Tcp namespace

  • Thread starter Thread starter Raj
  • Start date Start date
R

Raj

I am running VS2008 SP1 with .NET 3.5 SP1 on Windows XP Professional SP3

I am writing .Net remoting application but could not find the namespace Tcp
under System.Runtime.Remoting.Channels

Any help/workaround would be appreciated

Thank you

Regards
Raj
 
Raj said:
I am running VS2008 SP1 with .NET 3.5 SP1 on Windows XP Professional SP3

I am writing .Net remoting application but could not find the namespace
Tcp
under System.Runtime.Remoting.Channels

You need to add a Referece in yur project to
System.Runtime.Remoting.DLL.
 
Raj said:
I have already done that! Still cannot find it!!

I have just tried it out in a new, empty project.
In the new project, I typed "using System.Runtime.Remoting.Channels."
and intellisense did not offer anything after the last dot. I then went into
the project references and added System.Runtime.Remoting.dll. Then back to
the source code, retyped the last dot after Channels, and voila! Tcp now
appears.
 
Back
Top