LumiSoft.Net.SocketLogEntry.SocketLogEntry C# (CSharp) Method

SocketLogEntry() public method

Default constructor.
public SocketLogEntry ( string text, long size, SocketLogEntryType type ) : System
text string Log text.
size long Data size.
type SocketLogEntryType Log entry type
return System
        public SocketLogEntry(string text,long size,SocketLogEntryType type)
        {
            m_Text = text;
            m_Type = type;
            m_Size = size;
        }
SocketLogEntry