-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
C# 7.1 and .NET Core 2.0 - Modern Cross-Platform Development - Third Edition
By :
Sometimes you will need to work with network resources. The most common types in .NET Standard for working with network resources are shown in the following table:
Namespace | Example type(s) | Description |
|
| These are for working with DNS servers, URIs, IP addresses, and so on |
|
| These are for working with FTP servers |
|
| These are for working with HTTP servers, that is, websites |
|
| These are for working with SMTP servers, that is, sending email messages |
|
| These are for working with low-level network protocols |
Add a new console application project named WorkingWithNetworkResources.
At the top of the file, import the following namespaces:
using System; using...