CodeProfiler IsActive Property Delta Engine Documentation

Namespace: DeltaEngine.Profiling
Assembly: DeltaEngine.Profiling (in DeltaEngine.Profiling.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public bool IsActive { get; set; }

Property Value

Type: Boolean

Implements

CodeProfilingProvider IsActive
Remarks

Tests: DeltaEngine.Profiling.Tests.CodeProfilerTests
Examples

2 unit tests call DeltaEngine.Profiling.CodeProfiler.IsActive
[Test]
public void VerifyStaticProfilerCurrentIsFalse()
{
    var profiler = CodeProfiler.Current as CodeProfiler;
    Assert.IsFalse(profiler.IsActive);
}
[Test]
public void VerifyStaticProfilerDefaultProperties()
{
    var profiler = CodeProfiler.Current as CodeProfiler;
    Assert.AreEqual(10, profiler.MaximumPollsPerSecond);
    Assert.AreEqual(0, profiler.ResetInterval);
    Assert.IsFalse(profiler.IsActive);
}
See Also