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

ATMLOutputWindow_OnInfo() private method

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