Disables or enables sending call stack of the events to dbMonitor application.
public bool SendCallStack {get; set;}
'Declaration
Public Property SendCallStack As Boolean
Property Value
true if sending the call stack is enabled; otherwise,
false.
This example shows selecting connection open events and executing SQL statements for monitoring and turning off call stack sending.
var monitor = new FreshBooksMonitor() { IsActive = true };
monitor.SendCallStack = false;
monitor.Filter = Devart.Common.MonitorEventFilter.OpenConnection | Devart.Common.MonitorEventFilter.Execute;
Dim monitor = New FreshBooksMonitor() With {
.IsActive = True
}
monitor.SendCallStack = False
monitor.Filter = Devart.Common.MonitorEventFilter.OpenConnection Or Devart.Common.MonitorEventFilter.Execute