5 instantiations of CompatibilitySwitch
Microsoft.AspNetCore.Mvc.Core.Test (5)
Infrastructure\CompatibilitySwitchTest.cs (4)
12
var @switch = new
CompatibilitySwitch
<bool>("TestProperty");
23
var @switch = new
CompatibilitySwitch
<bool>("TestProperty", initialValue: true);
34
var @switch = new
CompatibilitySwitch
<bool>("TestProperty");
48
var @switch = new
CompatibilitySwitch
<bool>("TestProperty");
Infrastructure\ConfigureCompatibilityOptionsTest.cs (1)
89
_testProperty = new
CompatibilitySwitch
<bool>(nameof(TestProperty));
5 references to CompatibilitySwitch
Microsoft.AspNetCore.Mvc.Core.Test (5)
Infrastructure\CompatibilitySwitchTest.cs (4)
12
var
@switch = new CompatibilitySwitch<bool>("TestProperty");
23
var
@switch = new CompatibilitySwitch<bool>("TestProperty", initialValue: true);
34
var
@switch = new CompatibilitySwitch<bool>("TestProperty");
48
var
@switch = new CompatibilitySwitch<bool>("TestProperty");
Infrastructure\ConfigureCompatibilityOptionsTest.cs (1)
83
private readonly
CompatibilitySwitch
<bool> _testProperty;