1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
305
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
543
if (!
_flags
.IsInterface())
641
switch (
_flags
& TypeAttributes.VisibilityMask)
673
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1633
return (
_flags
& TypeAttributes.SpecialName) != 0;
1658
(
_flags
& TypeAttributes.Sealed) != 0 &&
1659
(
_flags
& TypeAttributes.Abstract) != 0;
1668
(
_flags
& TypeAttributes.Abstract) != 0 &&
1669
(
_flags
& TypeAttributes.Sealed) == 0;
1677
return (
_flags
& TypeAttributes.Abstract) != 0;
1686
(
_flags
& TypeAttributes.Sealed) != 0 &&
1687
(
_flags
& TypeAttributes.Abstract) == 0;
1695
return (
_flags
& TypeAttributes.Sealed) != 0;
1703
return
_flags
;
1764
if (
_flags
.IsInterface())
1813
return
_flags
.IsInterface();
2225
return (
_flags
& TypeAttributes.Import) != 0;
2238
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2259
CharSet result =
_flags
.ToCharSet();
2274
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2336
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }