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

Failover Socket Client

Rate me:
Please Sign up or sign in to vote.
4.82/5 (10 votes)
20 Aug 2007CPOL9 min read 53.6K   786   47  
A socket client which fails over to a different host when the connection drops
using System;
using System.Collections.Generic;
using System.Text;

namespace BM.Socket.Client
{
    class LogMessage
    {
        private DateTime _timestamp;
        private string _message;
        private LogCategory _category;

        public string FormattedMessage
        {
            get
            {
                return string.Format("{0} - {1}: {2}{3}", _timestamp.ToString("HH:mm:ss.ffffff"), _category.ToString(), _message, Environment.NewLine);
            }
        }
        public LogMessage(DateTime Timestamp, string Message, LogCategory Category)
        {
            _timestamp = Timestamp;
            _message = Message;
            _category = Category;
        }
    }
}

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
Web Developer
Europe Europe
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions