Imports System.Net Intellisense?
Here is an example of the problem that I ran into yesterday. In Visual Studio 2005 I created a new VB Windows Application. This Windows Application connected to a Web Service as a Web Reference, and now I wanted to pass the Web Service Credentials. Previously in Visual Studio 2003, I typed in at the top of the page:
imports System.Net
This would allow intellisense to display every method in the System.Net namespace. But when i did this in Visual Studio 2005, the intellisense did not display methods in the System.Net namespace, even when I clicked the "All" tab in Intellisense.
Normally after I typed the imports above, in my code I could use Intellisense to auto complete or display methods from the System.Net namespace. But I found out that now Intellisense did not show me methods inside the System.Net namespace. I would had to manually type out: webService.Credentials =CredentialCache.DefaultNetworkCredentials
As a programmer I relied on Intellisense to show me all methods or properties. Is this a bug, new feature with Intellisense, or just my machine?
Thanks

