| A Suite of Cryptographic Objects Part 2: Implementing Key Exchange Over a Network |
| C#Today |
| Throughout the whole history of Cryptography one element has continually created the most difficulty: Key Exchange. In this article, Richard Conway looks at the idea and implementation of Key Exchange over a network, bringing together the elements that we have discussed so far in the previous article (with respect to symmetric key cryptography) and also introduces concepts of public key cryptography. We demonstrate the use of this by creating a secure chat application. |
|
| C# From a Java Developer's Perspective |
| http://www.25hoursaday.com/ |
| What follows is an overview of similarities and differences between the language features and libraries of the C# and Java programming languages based on my experience using both languages. All code snippets below were tested on Microsoft's .NET Framework Beta 2 for C# snippets and Java™ 2, Standard Edition (J2SE™) version 1.4 Beta 2 for the Java snippets. |
|
| C# Ping Utitility |
| C# Help |
|
|
| C# TELNET Client |
| C# Help |
| The telnet application makes use of Callback Function to recieve data from a socket in asyncronous mode. |
|
| Check Your Email With Style - Updated |
| DotNetJunkies |
| Have you ever wanted to write your own POP3 email client? Well now you can with the help of my C# example. This article explains how to use .NET to connect to a POP3 mail server, and the different commands to use with the server to get the results you want. |
|
| FTP Client Library in C# |
| C# Help |
|
|
| How to access a File Transfer Protocol site by using Visual Basic .NET |
| Microsoft Support |
|
(832679) - This article describes how to perform the File Transfer Protocol (FTP) operation by using Microsoft Visual Basic .NET. The code samples in this article perform the following FTP commands: Upload a file to the FTP site Download a file from the FTP site...
|
|
| How to access a File Transfer Protocol site by using Visual Basic .NET |
| Microsoft Support |
| (832679) - This article describes how to perform the File Transfer Protocol (FTP) operation by using Microsoft Visual Basic .NET. The code samples in this article perform the following FTP commands: Upload a file to the FTP site Download a file from the FTP site... |
|
| IP Multicasting in C# |
| The Code Project |
| This document provides a simple client/server example for setting up a multicast application in C# .NET as a well as the method in which multicasting works and why it is useful now and how, with the increasing availability of bandwidth and the increased use of streaming media, will become a definitive method of data transmission in the near future. |
|
| Network Programming in C#-Part 1 |
| C# Corner |
| The .NET framework provides two namespaces, System.Net and System.Net.Sockets for network programming. The classes and methods of these namespaces help us to write programs, which can communicate across the network. The communication can be either connection oriented or connectionless. They can also be either stream oriented or data-gram based. |
|
| Networking Support Provided by the .NET Framework |
| C#Today |
| The .NET Framework provides a wide range of excellent features that developers can take advantage in building networking applications. The System.Net classes are similar to Microsoft's WinInet API (used for internet protocol programming), in that they allow applications to get and send data using Internet protocols. |
|
| Peer-to-Peer |
| C# Help |
| The P2P concept generally consists of a central Index server. This server does not contain any files, physically. It only maintains the information about the users who are logged on to the network, the IP address of the client and the list of files shared at any given moment by a user. The client and the server communicate with each other over a socket connection using simple commands. |
|
| Ping Utility and Web Service |
| Egg Head Cafe |
| This article demonstrates how to build a Ping utility into a Web service. |
|
| Ping Utility in C# |
| C# Corner |
| Ping is a very useful utility used to determine the speed of a Network Connection. It establishes a socket connection with the given hostname and sends a Data Packet using ICMP Protocol. The Host then in reply send back a Packet. The time taken to Send and Receive a Data Packet is calculated in Milliseconds. This helps us to know the speed of the connection. |
|
| Ping v2 |
| Master C# |
| Ping is a very useful utility used to determine the speed of a Network Connection its also used in many other networking utilities. It sends a Data Packet using ICMP Protocol to the given Host. The Host then in reply sends back a Data Packet. The time taken to Send and Receive a Data Packet is calculated in Milliseconds. This helps us to know the speed of the connection. |
|
| Real Time TCP/IP using C# |
| The Code Project |
| The Real time Application is a sample that shows the communication techniques between a client (TcpClient) and a server (TcpServer) application using Socket class on each side. The project also demonstrates how to using listview control in the real time project. |
|
| The Ultimate Socket Libraray |
| The Code Project |
| All what you need to know about sockets |
|
| The Ultimate Socket Library |
| The Code Project |
| All what you need to know about sockets |
|