Features
- Cover Type: Paperback with 656 pages
- Published by: Sybex November 26, 2002
- Written in: English
- ISBN 10 Number: 0782141765
- ISBN 13 Number: 978-0782141764
-
Book Dimensions:
9 x 7.5 x 1.6 inches
- Weighs: 2.2 pounds
Book Description
On its own, C# simplifies network programming. Combine it with the precise instruction found in C# Network Programming, and you'll find that building network applications is easier and quicker than ever.
This book helps newcomers get started with a look at the basics of network programming as they relate to C#, including the language's network classes, the Winsock interface, and DNS resolution. Spend as much time here as you need, then dig into the core topics of the network layer. You'll learn to make sockets connections via TCP and "connectionless" connections via UDP. You'll also discover just how much help C# gives you with some of your toughest chores, such as asynchronous socket programming, multithreading, and multicasting.
Network-layer techniques are just a means to an end, of course, and so this book keeps going, providing a series of detailed application-layer programming examples that show you how to work with real protocols and real network environments to build and implement a variety of applications. Use SNMP to manage network devices, SMTP to communicate with remote mail servers, and HTTP to Web-enable your applications. And use classes native to C# to query and modify Active Directory entries.
Rounding it all out is plenty of advanced coverage to push your C# network programming skills to the limit. For example, you'll learn two ways to share application methods across the network: using Web services and remoting. You'll also master the security features intrinsic to C# and .NET--features that stand to benefit all of your programming projects.
Back Cover Copy
On its own, C# simplifies network programming. Combine it with the precise instruction found in
C# Network Programming, and you’ll find that building network applications is easier and quicker than ever.
This book helps newcomers get started with a look at the basics of network programming as they relate to C#, including the language’s network classes, the Winsock interface, and DNS resolution. Spend as much time here as you need, then dig into the core topics of the network layer. You’ll learn to make sockets connections via TCP and “connectionless” connections via UDP. You’ll also discover just how much help C# gives you with some of your toughest chores, such as asynchronous socket programming, multithreading, and multicasting.
Network-layer techniques are just a means to an end, of course, and so this book keeps going, providing a series of detailed application-layer programming examples that show you how to work with real protocols and real network environments to build and implement a variety of applications. Use SNMP to manage network devices, SMTP to communicate with remote mail servers, and HTTP to Web-enable your applications. And use classes native to C# to query and modify Active Directory entries.
Rounding it all out is plenty of advanced coverage to push your C# network programming skills to the limit. For example, you’ll learn two ways to share application methods across the network: using Web services and remoting. You’ll also master the security features intrinsic to C# and .NET--features that stand to benefit all of your programming projects.
Reader Reviews
There's a serious problem in chapter 07 where the author illustrates how you would transfer binary data over the network. Any primitive data longer than 1 byte should be converted to network byte order before sending to the network. This fact is also mentioned by the author but nowhere in all the example codes explicitly do this conversion. Thus all the example codes are incorrect. This is very important because 99.9% of people developing software in C# will be running a little endian machine. I wonder if the author ever try to use his software to communicate with other software running in big-endian computers. Also, most of the examples are too simple for the experienced developers. I'd expect more from this book.
Comment | |
(Report this)