1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
342
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
794
if (!
_flags
.IsInterface())
897
switch (
_flags
& TypeAttributes.VisibilityMask)
929
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
2107
return (
_flags
& TypeAttributes.SpecialName) != 0;
2132
(
_flags
& TypeAttributes.Sealed) != 0 &&
2133
(
_flags
& TypeAttributes.Abstract) != 0;
2142
(
_flags
& TypeAttributes.Abstract) != 0 &&
2143
(
_flags
& TypeAttributes.Sealed) == 0;
2151
return (
_flags
& TypeAttributes.Abstract) != 0;
2160
(
_flags
& TypeAttributes.Sealed) != 0 &&
2161
(
_flags
& TypeAttributes.Abstract) == 0;
2169
return (
_flags
& TypeAttributes.Sealed) != 0;
2177
return
_flags
;
2245
else if (
_flags
.IsInterface())
2335
return
_flags
.IsInterface();
2833
return (
_flags
& TypeAttributes.Import) != 0;
2846
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2867
CharSet result =
_flags
.ToCharSet();
2882
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2965
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }