10 overrides of ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CSharp (10)
Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs (1)
99
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs (1)
161
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\ErrorPropertySymbol.cs (1)
92
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
{ get { return ImmutableArray<PropertySymbol>.Empty; } }
Symbols\Metadata\PE\PEPropertySymbol.cs (1)
786
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\NativeIntegerTypeSymbol.cs (1)
480
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
=> ImmutableArray<PropertySymbol>.Empty;
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
151
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\SignatureOnlyPropertySymbol.cs (1)
60
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
{ get { return _explicitInterfaceImplementations; } }
Symbols\Source\SourcePropertySymbolBase.cs (1)
656
public sealed override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\SubstitutedPropertySymbol.cs (1)
114
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListProperty.cs (1)
47
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
=> ImmutableArray.Create(_interfaceProperty);
5 references to ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CSharp (5)
Symbols\MemberSymbolExtensions.cs (1)
599
return ((PropertySymbol)member).
ExplicitInterfaceImplementations
.Cast<PropertySymbol, Symbol>();
Symbols\PropertySymbol.cs (1)
314
get { return
ExplicitInterfaceImplementations
.Any(); }
Symbols\PublicModel\PropertySymbol.cs (1)
76
get { return _underlying.
ExplicitInterfaceImplementations
.GetPublicSymbols(); }
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
168
var impls = _underlyingProperty.
ExplicitInterfaceImplementations
;
Symbols\SubstitutedPropertySymbol.cs (1)
122
ExplicitInterfaceHelpers.SubstituteExplicitInterfaceImplementations(OriginalDefinition.
ExplicitInterfaceImplementations
, _containingType.TypeSubstitution),