LogViewer.LogEntry.LogEntry C# (CSharp) Method

LogEntry() public method

public LogEntry ( ) : System
return System
        public LogEntry()
        {
            this.Data = new LoggingEventData();
            Data.ExceptionString = string.Empty;
            Data.Domain = string.Empty;
            Data.UserName = string.Empty;
            Data.Message = string.Empty;
            Data.ThreadName = string.Empty;

            Image = ImageType.Custom;

            Data.TimeStamp = new DateTime (1970, 1, 1, 0, 0, 0, 0);
            Item = 0;
        }