1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
301
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
530
if (!
_flags
.IsInterface())
628
switch (
_flags
& TypeAttributes.VisibilityMask)
660
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1620
return (
_flags
& TypeAttributes.SpecialName) != 0;
1645
(
_flags
& TypeAttributes.Sealed) != 0 &&
1646
(
_flags
& TypeAttributes.Abstract) != 0;
1655
(
_flags
& TypeAttributes.Abstract) != 0 &&
1656
(
_flags
& TypeAttributes.Sealed) == 0;
1664
return (
_flags
& TypeAttributes.Abstract) != 0;
1673
(
_flags
& TypeAttributes.Sealed) != 0 &&
1674
(
_flags
& TypeAttributes.Abstract) == 0;
1682
return (
_flags
& TypeAttributes.Sealed) != 0;
1690
return
_flags
;
1751
if (
_flags
.IsInterface())
1800
return
_flags
.IsInterface();
2185
return (
_flags
& TypeAttributes.Import) != 0;
2198
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2219
CharSet result =
_flags
.ToCharSet();
2233
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2294
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }