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)
767if (!_flags.IsInterface()) 870switch (_flags & TypeAttributes.VisibilityMask) 902throw ExceptionUtilities.UnexpectedValue(_flags & TypeAttributes.VisibilityMask); 1894return (_flags & TypeAttributes.SpecialName) != 0; 1919(_flags & TypeAttributes.Sealed) != 0 && 1920(_flags & TypeAttributes.Abstract) != 0; 1929(_flags & TypeAttributes.Abstract) != 0 && 1930(_flags & TypeAttributes.Sealed) == 0; 1938return (_flags & TypeAttributes.Abstract) != 0; 1947(_flags & TypeAttributes.Sealed) != 0 && 1948(_flags & TypeAttributes.Abstract) == 0; 1956return (_flags & TypeAttributes.Sealed) != 0; 1964return _flags; 2032else if (_flags.IsInterface()) 2122return _flags.IsInterface(); 2620return (_flags & TypeAttributes.Import) != 0; 2633return (_flags & TypeAttributes.WindowsRuntime) != 0; 2654CharSet result = _flags.ToCharSet(); 2669get { return (_flags & TypeAttributes.Serializable) != 0; } 2752get { return (_flags & TypeAttributes.HasSecurity) != 0; }