1 write to _flags
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
305_flags = moduleSymbol.Module.GetTypeDefFlagsOrThrow(handle);
20 references to _flags
Microsoft.CodeAnalysis.CSharp (20)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (20)
543if (!_flags.IsInterface()) 641switch (_flags & TypeAttributes.VisibilityMask) 673throw ExceptionUtilities.UnexpectedValue(_flags & TypeAttributes.VisibilityMask); 1633return (_flags & TypeAttributes.SpecialName) != 0; 1658(_flags & TypeAttributes.Sealed) != 0 && 1659(_flags & TypeAttributes.Abstract) != 0; 1668(_flags & TypeAttributes.Abstract) != 0 && 1669(_flags & TypeAttributes.Sealed) == 0; 1677return (_flags & TypeAttributes.Abstract) != 0; 1686(_flags & TypeAttributes.Sealed) != 0 && 1687(_flags & TypeAttributes.Abstract) == 0; 1695return (_flags & TypeAttributes.Sealed) != 0; 1703return _flags; 1764if (_flags.IsInterface()) 1813return _flags.IsInterface(); 2225return (_flags & TypeAttributes.Import) != 0; 2238return (_flags & TypeAttributes.WindowsRuntime) != 0; 2259CharSet result = _flags.ToCharSet(); 2274get { return (_flags & TypeAttributes.Serializable) != 0; } 2336get { return (_flags & TypeAttributes.HasSecurity) != 0; }