1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
301_flags = moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
530if (!_flags.IsInterface()) 628switch (_flags & TypeAttributes.VisibilityMask) 660throw ExceptionUtilities.UnexpectedValue(_flags & TypeAttributes.VisibilityMask); 1620return (_flags & TypeAttributes.SpecialName) != 0; 1645(_flags & TypeAttributes.Sealed) != 0 && 1646(_flags & TypeAttributes.Abstract) != 0; 1655(_flags & TypeAttributes.Abstract) != 0 && 1656(_flags & TypeAttributes.Sealed) == 0; 1664return (_flags & TypeAttributes.Abstract) != 0; 1673(_flags & TypeAttributes.Sealed) != 0 && 1674(_flags & TypeAttributes.Abstract) == 0; 1682return (_flags & TypeAttributes.Sealed) != 0; 1690return _flags; 1751if (_flags.IsInterface()) 1800return _flags.IsInterface(); 2185return (_flags & TypeAttributes.Import) != 0; 2198return (_flags & TypeAttributes.WindowsRuntime) != 0; 2219CharSet result = _flags.ToCharSet(); 2233get { return (_flags & TypeAttributes.Serializable) != 0; } 2294get { return (_flags & TypeAttributes.HasSecurity) != 0; }