3 references to CaseSensitive
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\BoundAttributeDescriptor.cs (1)
36public bool CaseSensitive => _flags.IsFlagSet(BoundAttributeFlags.CaseSensitive);
Language\BoundAttributeDescriptorBuilder.cs (2)
120get => _caseSensitiveSet ? _flags.IsFlagSet(BoundAttributeFlags.CaseSensitive) : _parent.CaseSensitive; 123_flags.UpdateFlag(BoundAttributeFlags.CaseSensitive, value);