The first thing we'll want to do is define the interaction mechanisms for our custom protocol. These interactions will be how we distinguish our protocol from alternative application-layer protocols. You might recall when I said in Chapter 10, FTP and SMTP, that each application-layer protocol is designed to optimize a specific business-layer application task. This principle should hold true with any custom protocols you've implemented as well. To that end, we'll define our protocol to meet a very specific business need. Of course, since this is still entirely for demonstration purposes, we won't concern ourselves with whether or not it's the most optimum design for our business need, but only that it is well-defined in its interactions. Once we have that in place, we can implement that specification within our WebRequest...
Hands-On Network Programming with C# and .NET Core
By :
Hands-On Network Programming with C# and .NET Core
By:
Overview of this book
The C# language and the .NET Core application framework provide the tools and patterns required to make the discipline of network programming as intuitive and enjoyable as any other aspect of C# programming. With the help of this book, you will discover how the C# language and the .NET Core framework make this possible.
The book begins by introducing the core concepts of network programming, and what distinguishes this field of programming from other disciplines. After this, you will gain insights into concepts such as transport protocols, sockets and ports, and remote data streams, which will provide you with a holistic understanding of how network software fits into larger distributed systems. The book will also explore the intricacies of how network software is implemented in a more explicit context, by covering sockets, connection strategies such as Transmission Control Protocol (TCP) and User Datagram Protocol (UDP), asynchronous processing, and threads. You will then be able to work through code examples for TCP servers, web APIs served over HTTP, and a Secure Shell (SSH) client.
By the end of this book, you will have a good understanding of the Open Systems Interconnection (OSI) network stack, the various communication protocols for that stack, and the skills that are essential to implement those protocols using the C# programming language and the .NET Core framework.
Table of Contents (26 chapters)
Preface
Free Chapter
Section 1: Foundations of Network Architecture
Networks in a Nutshell
DNS and Resource Location
Communication Protocols
Packets and Streams
Section 2: Communicating Over Networks
Generating Network Requests in C#
Streams, Threads, and Asynchronous Data
Error Handling over the Wire
Section 3: Application Protocols and Connection Handling
Sockets and Ports
HTTP in .NET
FTP and SMTP
The Transport Layer - TCP and UDP
Section 4: Security, Stability, and Scalability
The Internet Protocol
Transport Layer Security
Authentication and Authorization on Networks
Caching Strategies for Distributed Systems
Performance Analysis and Monitoring
Section 5: Advanced Subjects
Pluggable Protocols in .NET Core
Network Analysis and Packet Inspection
Remote Logins and SSH
Other Books You May Enjoy
Customer Reviews