|
PerformanceMonitor(String, Double, Boolean) Constructor
|
Namespace: GSF.DiagnosticsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public PerformanceMonitor(
string processName,
double samplingInterval,
bool addDefaultCounters = true
)
Public Sub New (
processName As String,
samplingInterval As Double,
Optional addDefaultCounters As Boolean = true
)
public:
PerformanceMonitor(
String^ processName,
double samplingInterval,
bool addDefaultCounters = true
)
new :
processName : string *
samplingInterval : float *
?addDefaultCounters : bool
(* Defaults:
let _addDefaultCounters = defaultArg addDefaultCounters true
*)
-> PerformanceMonitor
GSF.Diagnostics.PerformanceMonitor = function(processName, samplingInterval, addDefaultCounters);
View SourceParameters
- processName String
- Name of the Process whose performance is to be monitored.
- samplingInterval Double
- Interval, in milliseconds, at which the Counters are to be sampled.
- addDefaultCounters Boolean (Optional)
- Set to true to add default counters; otherwise false.
See Also