1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
334
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
767
if (!
_flags
.IsInterface())
870
switch (
_flags
& TypeAttributes.VisibilityMask)
902
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1899
return (
_flags
& TypeAttributes.SpecialName) != 0;
1924
(
_flags
& TypeAttributes.Sealed) != 0 &&
1925
(
_flags
& TypeAttributes.Abstract) != 0;
1934
(
_flags
& TypeAttributes.Abstract) != 0 &&
1935
(
_flags
& TypeAttributes.Sealed) == 0;
1943
return (
_flags
& TypeAttributes.Abstract) != 0;
1952
(
_flags
& TypeAttributes.Sealed) != 0 &&
1953
(
_flags
& TypeAttributes.Abstract) == 0;
1961
return (
_flags
& TypeAttributes.Sealed) != 0;
1969
return
_flags
;
2037
else if (
_flags
.IsInterface())
2127
return
_flags
.IsInterface();
2625
return (
_flags
& TypeAttributes.Import) != 0;
2638
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2659
CharSet result =
_flags
.ToCharSet();
2674
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2757
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }