Base:
property
IsSealed
Microsoft.CodeAnalysis.CSharp.Symbol.IsSealed
8 references to IsSealed
Microsoft.CodeAnalysis.CSharp (8)
Compiler\MethodCompiler.cs (1)
544if ((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)
1077else if (IsSealed && !IsOverride && !(IsAbstract && isExplicitInterfaceImplementationInInterface)) 1108else if (IsAbstract && IsSealed && !isExplicitInterfaceImplementationInInterface) 1208if (!this.IsSealed || (hasGetter && hasSetter)) 1229Debug.Assert(this.IsSealed && (GetMethod is null || SetMethod is null));