1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
306
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
563
if (!
_flags
.IsInterface())
661
switch (
_flags
& TypeAttributes.VisibilityMask)
693
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1653
return (
_flags
& TypeAttributes.SpecialName) != 0;
1678
(
_flags
& TypeAttributes.Sealed) != 0 &&
1679
(
_flags
& TypeAttributes.Abstract) != 0;
1688
(
_flags
& TypeAttributes.Abstract) != 0 &&
1689
(
_flags
& TypeAttributes.Sealed) == 0;
1697
return (
_flags
& TypeAttributes.Abstract) != 0;
1706
(
_flags
& TypeAttributes.Sealed) != 0 &&
1707
(
_flags
& TypeAttributes.Abstract) == 0;
1715
return (
_flags
& TypeAttributes.Sealed) != 0;
1723
return
_flags
;
1784
if (
_flags
.IsInterface())
1833
return
_flags
.IsInterface();
2245
return (
_flags
& TypeAttributes.Import) != 0;
2258
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2279
CharSet result =
_flags
.ToCharSet();
2294
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2356
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }