1 write to _flags
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\BoundAttributeDescriptor.cs (1)
66
_flags
= flags;
8 references to _flags
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\BoundAttributeDescriptor.cs (8)
21
public BoundAttributeFlags Flags =>
_flags
;
37
public bool CaseSensitive =>
_flags
.IsFlagSet(BoundAttributeFlags.CaseSensitive);
38
public bool HasIndexer =>
_flags
.IsFlagSet(BoundAttributeFlags.HasIndexer);
41
public bool IsEnum =>
_flags
.IsFlagSet(BoundAttributeFlags.IsEnum);
44
internal bool IsEditorRequired =>
_flags
.IsFlagSet(BoundAttributeFlags.IsEditorRequired);
45
public bool IsDirectiveAttribute =>
_flags
.IsFlagSet(BoundAttributeFlags.IsDirectiveAttribute);
46
public bool IsWeaklyTyped =>
_flags
.IsFlagSet(BoundAttributeFlags.IsWeaklyTyped);
87
builder.Append((byte)
_flags
);