1 write to _flags
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\BoundAttributeDescriptor.cs (1)
65_flags = flags;
8 references to _flags
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\BoundAttributeDescriptor.cs (8)
20public BoundAttributeFlags Flags => _flags; 36public bool CaseSensitive => _flags.IsFlagSet(BoundAttributeFlags.CaseSensitive); 37public bool HasIndexer => _flags.IsFlagSet(BoundAttributeFlags.HasIndexer); 40public bool IsEnum => _flags.IsFlagSet(BoundAttributeFlags.IsEnum); 43internal bool IsEditorRequired => _flags.IsFlagSet(BoundAttributeFlags.IsEditorRequired); 44public bool IsDirectiveAttribute => _flags.IsFlagSet(BoundAttributeFlags.IsDirectiveAttribute); 45public bool IsWeaklyTyped => _flags.IsFlagSet(BoundAttributeFlags.IsWeaklyTyped); 86builder.Append((byte)_flags);