Open.Core.LogWriter.WriteInternal C# (CSharp) Method

WriteInternal() private method

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