SolidworksAddinFramework.Wpf.LogViewer.Log C# (CSharp) Method

Log() public static method

public static Log ( LogEntry entry ) : void
entry LogEntry
return void
        public static void Log(LogEntry entry)
        {
            var window = Window.Value;
            window.Dispatcher.Invoke(()=> window.LogEntries.Add(entry));
        }

Same methods

LogViewer::Log ( string message ) : void