LongoMatch.LogEntry.LogEntry C# (CSharp) Method

LogEntry() private method

private LogEntry ( LogEntryType type, string message, string details ) : System
type LogEntryType
message string
details string
return System
        internal LogEntry(LogEntryType type, string message, string details)
        {
            this.type = type;
            this.message = message;
            this.details = details;
            this.timestamp = DateTime.Now;
        }
LogEntry