1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
337
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
789
if (!
_flags
.IsInterface())
892
switch (
_flags
& TypeAttributes.VisibilityMask)
924
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1941
return (
_flags
& TypeAttributes.SpecialName) != 0;
1966
(
_flags
& TypeAttributes.Sealed) != 0 &&
1967
(
_flags
& TypeAttributes.Abstract) != 0;
1976
(
_flags
& TypeAttributes.Abstract) != 0 &&
1977
(
_flags
& TypeAttributes.Sealed) == 0;
1985
return (
_flags
& TypeAttributes.Abstract) != 0;
1994
(
_flags
& TypeAttributes.Sealed) != 0 &&
1995
(
_flags
& TypeAttributes.Abstract) == 0;
2003
return (
_flags
& TypeAttributes.Sealed) != 0;
2011
return
_flags
;
2079
else if (
_flags
.IsInterface())
2169
return
_flags
.IsInterface();
2667
return (
_flags
& TypeAttributes.Import) != 0;
2680
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2701
CharSet result =
_flags
.ToCharSet();
2716
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2799
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }