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