ATMLCommonLibrary.forms.ATMLOutputWindow.ATMLOutputWindow_OnWarn C# (CSharp) Method

ATMLOutputWindow_OnWarn() private method

private ATMLOutputWindow_OnWarn ( string message, object source = null ) : void
message string
source object
return void
        private void ATMLOutputWindow_OnWarn( string message, object source = null )
        {
            var outputText = new StringBuilder();
            message = message.Replace( Resources.CRLF, Resources.HTML_BR );
            outputText
                .Append( string.Format( WARN_TEMPLATE, message ) )
                .Append( Resources.HTML_BR );
            WriteOutputText( WRN, outputText.ToString(), GetActiveBrowser( source ) );
        }