Base:
property
IsSealed
Microsoft.CodeAnalysis.CSharp.Symbol.IsSealed
8 references to IsSealed
Microsoft.CodeAnalysis.CSharp (8)
Compiler\MethodCompiler.cs (1)
545if ((object)sourceProperty != null && sourceProperty.IsSealed && compilationState.Emitting)
Compiler\SynthesizedMetadataCompiler.cs (1)
106if ((object)sourceProperty != null && sourceProperty.IsSealed)
Symbols\Source\SourcePropertySymbol.cs (2)
748|| IsSealed != implementation.IsSealed
Symbols\Source\SourcePropertySymbolBase.cs (4)
1070else if (IsSealed && !IsOverride && !(IsAbstract && isExplicitInterfaceImplementationInInterface)) 1101else if (IsAbstract && IsSealed && !isExplicitInterfaceImplementationInInterface) 1201if (!this.IsSealed || (hasGetter && hasSetter)) 1222Debug.Assert(this.IsSealed && (GetMethod is null || SetMethod is null));