1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
304
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
542
if (!
_flags
.IsInterface())
640
switch (
_flags
& TypeAttributes.VisibilityMask)
672
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1632
return (
_flags
& TypeAttributes.SpecialName) != 0;
1657
(
_flags
& TypeAttributes.Sealed) != 0 &&
1658
(
_flags
& TypeAttributes.Abstract) != 0;
1667
(
_flags
& TypeAttributes.Abstract) != 0 &&
1668
(
_flags
& TypeAttributes.Sealed) == 0;
1676
return (
_flags
& TypeAttributes.Abstract) != 0;
1685
(
_flags
& TypeAttributes.Sealed) != 0 &&
1686
(
_flags
& TypeAttributes.Abstract) == 0;
1694
return (
_flags
& TypeAttributes.Sealed) != 0;
1702
return
_flags
;
1763
if (
_flags
.IsInterface())
1812
return
_flags
.IsInterface();
2224
return (
_flags
& TypeAttributes.Import) != 0;
2237
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2258
CharSet result =
_flags
.ToCharSet();
2273
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2335
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }