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