-
Notifications
You must be signed in to change notification settings - Fork 0
DiGi.Log.Interfaces
github-actions[bot] edited this page Jul 15, 2026
·
2 revisions
Defines the contract for a log record entry.
public interface ILogRecord : DiGi.Core.Interfaces.ISerializableObject, DiGi.Core.Interfaces.ICloneableObject<DiGi.Core.Interfaces.ISerializableObject>, DiGi.Core.Interfaces.ICloneableObject, DiGi.Core.Interfaces.IObjectDerived
↳ LogRecord
Implements DiGi.Core.Interfaces.ISerializableObject, DiGi.Core.Interfaces.ICloneableObject<DiGi.Core.Interfaces.ISerializableObject>, DiGi.Core.Interfaces.ICloneableObject, DiGi.Core.Interfaces.IObject
Gets the date and time when the log record was created.
System.DateTime DateTime { get; }Gets the unique identifier of the log record.
string? Id { get; }Gets the type or severity level of the log record.
DiGi.Log.Enums.LogRecordType LogRecordType { get; }Gets the text content of the log record.
string? Text { get; }