Base:
property
IsPartialDefinition
Microsoft.CodeAnalysis.CSharp.Symbols.EventSymbol.IsPartialDefinition
10 references to IsPartialDefinition
Microsoft.CodeAnalysis.CSharp (10)
Symbols\MemberSymbolExtensions.cs (1)
752or SourceEventSymbol { IsPartialDefinition: true }
Symbols\Source\SourceEventAccessorSymbol.cs (2)
240public sealed override MethodSymbol? PartialImplementationPart => _event is { IsPartialDefinition: true, OtherPartOfPartial: { } other } 248internal bool IsPartialDefinition => _event.IsPartialDefinition;
Symbols\Source\SourceEventSymbol.cs (4)
846if (IsPartialDefinition && OtherPartOfPartial is { } implementation) 862Debug.Assert(this.IsPartialDefinition); 922internal SourceEventSymbol? SourcePartialImplementationPart => IsPartialDefinition ? OtherPartOfPartial : null; 930Debug.Assert(definition.IsPartialDefinition);
Symbols\Source\SourceFieldLikeEventSymbol.cs (3)
117else if (!this.IsAbstract && !this.IsPartialDefinition) 123if (this.IsPartialDefinition) 241Debug.Assert(ev.IsPartialDefinition);