KernowCode.KTest.Logging.Loggers.PrependCachedContent C# (CSharp) Method

PrependCachedContent() private method

private PrependCachedContent ( string content ) : string
content string
return string
        private string PrependCachedContent(string content)
        {
            if (!string.IsNullOrWhiteSpace(_cacheContent))
            {
                content = _cacheContent + content;
                _cacheContent = "";
            }
            return content;
        }