FeatureSwitchDefinitionAttribute
namespace System.Diagnostics.CodeAnalysis
{
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
internal sealed class FeatureSwitchDefinitionAttribute : Attribute
{
public FeatureSwitchDefinitionAttribute(string switchName)
{
<SwitchName>k__BackingField = switchName;
}
}
}