Note If you are using proxy server connection to see the map tile images, you need to set credentials for the proxy server in the application config file for authentication. To use your default proxy server credentials, you can do the following:
For Visual Studio Designer (IDE)
- Find devenv.exe.config (the devenv.exe configuration file) in: ProgramFiles(x86)\Microsoft Visual Studio 12.0\Common7\IDE
- In the configuration file, find the <system.net> block, and add this code:
Paste inside the <system.net></system.net> tags. |
Copy Code
|
<defaultProxy useDefaultCredentials="true" />
|
For Visual Studio Application
- On the menu bar, choose Project, Add New Item and then choose the Application Configuration File template.
- In the Name text box, enter a name, and then click Add button.
- In the configuration file, add this code:
Paste inside the <configuration></configuration> tags. |
Copy Code
|
<system.net> <defaultProxy useDefaultCredentials="true" /> </system.net>
|
|