Posted on June 25, 2008 by Garbage Collector
Clasa Socket din namespace-ul System.Net.Sockets reprezinta o implementare a interfetei soclurilor Berkeley si ofera metode sincrone si asincrone de transfer a datelor.
Operatiile pe un socket pot fi asemanate cu operatiile de IO pe un fisier, socket-ul fiind asociat handle-ului pe fisier.
Socket-urile pot fi folosite pentru a face două aplicaţii să comunice între ele. Aplicaţiile sunt, [...]
Filed under: Sockets | Leave a Comment »
Posted on June 25, 2008 by Garbage Collector
Console Application
using System;
using System.Collections.Generic;
using System.Text;
using System;
using System.Net.NetworkInformation;
namespace pr16
{
class Program
{
static void Main(string[] args)
{
IPGlobalProperties props = IPGlobalProperties.GetIPGlobalProperties();
[...]
Filed under: Sockets | Tagged: Network Information | Leave a Comment »