Open.Core.LogWriter.WriteInternal C# (CSharp) Méthode

WriteInternal() private méthode

private WriteInternal ( object message, string cssClass, string backgroundColor, string iconPath ) : void
message object
cssClass string
backgroundColor string
iconPath string
Résultat void
        private void WriteInternal(object message, string cssClass, string backgroundColor, string iconPath)
        {
            if (!CanWrite) return;
            View.InsertMessage(message, cssClass, backgroundColor, iconPath);
            canInsertSection = true;
        }