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

WriteList() public method

public WriteList ( string title, string backgroundColor ) : IHtmlList
title string
backgroundColor string
return IHtmlList
        public IHtmlList WriteList(string title, string backgroundColor)
        {
            if (!CanWrite) return null;
            return View.InsertList(title, null, backgroundColor, null);
        }