6, 0x07, 0x08, 0x09,
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16};
byte[] IV = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
Author: user
C# Programmation Réseau: Sélectionner un client TCP
byte[] data = new byte[1024];
string stringData;
int recv;
sock.Connect(iep);
Console.WriteLine("Connected to server");
recv
C# Programmation Réseau: Créer un serveur qui accepte plusieurs connexions
g())
{
Thread.Sleep(1000);
}
ConnectionThread newconnection = new ConnectionThread();
newconnection.threadListe
C# Programmation Réseau: Exécuter une requête POST d’un serveur HTTP
;
request.BeginGetRequestStream(new AsyncCallback(GetRequestStreamCallback), request);
allDone.WaitOne();
}
private static void GetRequ
C# Programmation Réseau: Vérifier si un URL est ROOT
ftware is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all co
C# Programmation Réseau: Vérifiersi l’adresse IP est une boucle
using System;
using System.Net;
class AddressSample {
public static void Main() {
IPAddress test2 = IPAddress.Loopback;
if (IPAddress.IsLoopback(test2))
Console.WriteLine("The Loopback address is: {0}",
test2.ToString());
else
Console.WriteLine("Error obtaining the loopback address");
}
}
C# Programmation Réseau: Créer une application de chat avec une socket MulticastSocket
()
{
Text = "Multicast Chat Program";
Size = new Size(400, 380);
Label label1 = new Label();
label1.Parent = this;
label1.Text
C# Programmation Réseau: Exemple d’utilisationde la classe Uri
);
Console.WriteLine("Local Path: " + sample.LocalPath);
Console.WriteLine("Query: " + sample.Query);
Console.WriteLine("Path and queury: " + sam
C# Programmation Réseau: Obtenir l’adresse IP de diffusion(255.255.255.255)
using System;
using System.Net;
class AddressSample {
public static void Main() {
IPAddress test3 = IPAddress.Broadcast;
Console.WriteLine("Broadcast address: {0}",test3.ToString());
}
}
C# Programmation Réseau: Exemple d’une application Traceroute pour suivre les chemins d’un paquet
IPEndPoint iep = new IPEndPoint(iphe.AddressList[0], 0);
EndPoint ep = (EndPoint)iep;
ICMP packet = new ICMP();
packet.Type = 0x08;