Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
965 connectés 

  FORUM HardWare.fr
  Programmation
  C#/.NET managed

  Débit réel du reseau ?

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

Débit réel du reseau ?

n°2004156
ledim97
Posté le 23-06-2010 à 14:47:51  profilanswer
 

Bonjour,
 
Je souhaite réaliser une application qui affiche le debit réel reseau utilisé par l'utilisateur ... Seulement je ne trouves pas grand chose sur quelle classe utiliser ...
 
QUelqu'un peut m'aider ?

mood
Publicité
Posté le 23-06-2010 à 14:47:51  profilanswer
 

n°2004191
ledim97
Posté le 23-06-2010 à 16:17:19  profilanswer
 

j'ai trouvé ça c'est plus adapté je trouve :  

Code :
  1. private static void ShowNetworkTraffic()
  2. {
  3.     PerformanceCounterCategory performanceCounterCategory = new PerformanceCounterCategory("Network Interface" );
  4.     string instance = performanceCounterCategory.GetInstanceNames()[0]; // 1st NIC !
  5.     PerformanceCounter performanceCounterSent = new PerformanceCounter("Network Interface", "Bytes Sent/sec", instance);
  6.     PerformanceCounter performanceCounterReceived = new PerformanceCounter("Network Interface", "Bytes Received/sec", instance);
  7.     for (int i = 0; i < 10; i++)
  8.     {
  9.         Console.WriteLine("bytes sent: {0}k\tbytes received: {1}k", performanceCounterSent.NextValue() / 1024, performanceCounterReceived.NextValue() / 1024);
  10.         Thread.Sleep(500);
  11.     }
  12. }


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  C#/.NET managed

  Débit réel du reseau ?

 

Sujets relatifs
<Programation réseau> recvfrom ( ) après un select ()Une ListView en temps réel ?
Comment savoir si dans un tab dechar il y a des entier et des reel ?Mettre à jour une URL en temps réel selon ce qui est écrit ds 1 input
[Algo][I.A.][Réseau de neurones][Graphe] Construction et ExploitationMapper un lecteur réseau avec username
realisation d'un jeu temps réel genre "Uno"VB eb reseau
Cherche exemple d'application temps réel en javaTraitement du langage naturel par réseau de neurones artificiel.
Plus de sujets relatifs à : Débit réel du reseau ?


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR