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

AtmlOutputWindowOnTrace() private method

private AtmlOutputWindowOnTrace ( string message, object source = null ) : void
message string
source object
return void
        private void AtmlOutputWindowOnTrace( string message, object source = null )
        {
            var outputText = new StringBuilder();
            outputText.Append( message ).Append( Resources.HTML_BR );
            WriteOutputText( TRC, outputText.ToString(), GetActiveBrowser( source ) );
        }