Networking in Windows Forms Applications

The .NET Framework provides classes for displaying Web pages, downloading Web content, interacting with file transfer protocol (FTP) sites, and consuming Web Services, making it easy to build network functionality into your application. The following resources will help you understand the networking technologies of the .NET Framework and how you can integrate them into Windows Forms.

Reference

System.Net
The root namespace for classes in the .NET Framework that handle network connectivity.

WebClient
A convenient class for retrieving Web or HTTP-based content programmatically.

FtpWebRequest
A class for retrieving and sending files with FTP.

WebBrowser
A managed wrapper class for the WebBrowser control that is included with Windows.

Network Programming in the .NET Framework
An introduction to networking in the .NET Framework.

Windows Forms Data Binding
Describes how to display database content in your application, either from a local data store or a database located on a network.