4 overrides of IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
87
internal override bool
IsExplicitInterfaceImplementation
Symbols\Source\SourceCustomEventSymbol.cs (1)
203
internal override bool
IsExplicitInterfaceImplementation
Symbols\Source\SourceFieldLikeEventSymbol.cs (1)
157
internal override bool
IsExplicitInterfaceImplementation
Symbols\SubstitutedEventSymbol.cs (1)
86
internal override bool
IsExplicitInterfaceImplementation
10 references to IsExplicitInterfaceImplementation
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
542
return ((EventSymbol)member).
IsExplicitInterfaceImplementation
;
Symbols\Retargeting\RetargetingEventSymbol.cs (1)
89
get { return _underlyingEvent.
IsExplicitInterfaceImplementation
; }
Symbols\Source\SourceEventAccessorSymbol.cs (2)
61
isMetadataVirtualIgnoringModifiers: @event.
IsExplicitInterfaceImplementation
&& (@event.Modifiers & DeclarationModifiers.Static) == 0);
73
get { return _event.
IsExplicitInterfaceImplementation
; }
Symbols\Source\SourceEventSymbol.cs (1)
523
bool isExplicitInterfaceImplementationInInterface = ContainingType.IsInterface &&
IsExplicitInterfaceImplementation
;
Symbols\Source\SourceMemberContainerSymbol.cs (1)
3622
Debug.Assert(!eventSymbol.
IsExplicitInterfaceImplementation
); // checked by caller
Symbols\SubstitutedEventSymbol.cs (1)
88
get { return OriginalDefinition.
IsExplicitInterfaceImplementation
; }
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
CodeGen\CodeGenTupleTest.cs (3)
13278
Assert.True(m10I1E1.
IsExplicitInterfaceImplementation
);
16069
Assert.False(m1E1.
IsExplicitInterfaceImplementation
);
16102
Assert.False(m1E2.
IsExplicitInterfaceImplementation
);