1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
321
_flags
= moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
738
if (!
_flags
.IsInterface())
836
switch (
_flags
& TypeAttributes.VisibilityMask)
868
throw ExceptionUtilities.UnexpectedValue(
_flags
& TypeAttributes.VisibilityMask);
1828
return (
_flags
& TypeAttributes.SpecialName) != 0;
1853
(
_flags
& TypeAttributes.Sealed) != 0 &&
1854
(
_flags
& TypeAttributes.Abstract) != 0;
1863
(
_flags
& TypeAttributes.Abstract) != 0 &&
1864
(
_flags
& TypeAttributes.Sealed) == 0;
1872
return (
_flags
& TypeAttributes.Abstract) != 0;
1881
(
_flags
& TypeAttributes.Sealed) != 0 &&
1882
(
_flags
& TypeAttributes.Abstract) == 0;
1890
return (
_flags
& TypeAttributes.Sealed) != 0;
1898
return
_flags
;
1959
if (
_flags
.IsInterface())
2063
return
_flags
.IsInterface();
2479
return (
_flags
& TypeAttributes.Import) != 0;
2492
return (
_flags
& TypeAttributes.WindowsRuntime) != 0;
2513
CharSet result =
_flags
.ToCharSet();
2528
get { return (
_flags
& TypeAttributes.Serializable) != 0; }
2593
get { return (
_flags
& TypeAttributes.HasSecurity) != 0; }