4 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
87
internal override bool
IsExplicitInterfaceImplementation
Symbols\Source\SourceCustomEventSymbol.cs (1)
205
internal override bool
IsExplicitInterfaceImplementation
Symbols\Source\SourceFieldLikeEventSymbol.cs (1)
181
internal override bool
IsExplicitInterfaceImplementation
Symbols\SubstitutedEventSymbol.cs (1)
86
internal override bool
IsExplicitInterfaceImplementation
8 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (8)
Symbols\MemberSymbolExtensions.cs (1)
788
return ((EventSymbol)member).
IsExplicitInterfaceImplementation
;
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
89
get { return _underlyingEvent.
IsExplicitInterfaceImplementation
; }
Symbols\Source\SourceEventAccessorSymbol.cs (2)
45
isExplicitInterfaceImplementation: @event.
IsExplicitInterfaceImplementation
,
78
get { return _event.
IsExplicitInterfaceImplementation
; }
Symbols\Source\SourceEventSymbol.cs (2)
623
bool isExplicitInterfaceImplementationInInterface = ContainingType.IsInterface &&
IsExplicitInterfaceImplementation
;
653
else if (IsPartial &&
IsExplicitInterfaceImplementation
)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
4578
Debug.Assert(!eventSymbol.
IsExplicitInterfaceImplementation
); // checked by caller
Symbols\SubstitutedEventSymbol.cs (1)
88
get { return OriginalDefinition.
IsExplicitInterfaceImplementation
; }