Click here to Skip to main content
15,896,201 members
Articles / Programming Languages / C#

C# WebServer Using Sockets

Rate me:
Please Sign up or sign in to vote.
5.00/5 (27 votes)
23 Jan 2014CPOL7 min read 103.9K   9.9K   161  
How to make a simple web server which supports GZIP compression, applications, and sessions.
using System;
using System.Net.Sockets;
using System.Net;

namespace ServerCommonLibrary
{


    /// <summary>
    /// this class rappresents a socket connection 
    /// </summary>
    public class SocketConnection : EventArgs
    {

        public SocketConnection(Socket sock)
        {
            this.Socket = sock;

        }

        public void SendData(byte[] data)
        {
            if (Socket != null && Socket.Connected)
            {
                Socket.Send(data);
            }
        }


        //#### Socket instance
        public Socket Socket { get; set; }

        //#### IPAdress request from
        public IPAddress IP
        {
            get { return Socket == null ? null : ((IPEndPoint)Socket.RemoteEndPoint).Address; }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
Alberto Biafelli,
Software Developer

Comments and Discussions