11 overrides of ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CSharp (11)
Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs (1)
100
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs (1)
163
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\ErrorPropertySymbol.cs (1)
95
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
{ get { return ImmutableArray<PropertySymbol>.Empty; } }
Symbols\Metadata\PE\PEPropertySymbol.cs (1)
879
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\NativeIntegerTypeSymbol.cs (1)
529
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
=> ImmutableArray<PropertySymbol>.Empty;
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
152
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\SignatureOnlyPropertySymbol.cs (1)
60
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
{ get { return _explicitInterfaceImplementations; } }
Symbols\Source\SourcePropertySymbolBase.cs (1)
683
public sealed override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\SubstitutedPropertySymbol.cs (1)
115
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListProperty.cs (1)
48
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
=> ImmutableArray.Create(_interfaceProperty);
Symbols\Synthesized\SynthesizedEmbeddedAttributePropertySymbol.cs (1)
36
public override ImmutableArray<PropertySymbol>
ExplicitInterfaceImplementations
=> [];
5 references to ExplicitInterfaceImplementations
Microsoft.CodeAnalysis.CSharp (5)
Symbols\MemberSymbolExtensions.cs (1)
880
return ((PropertySymbol)member).
ExplicitInterfaceImplementations
.Cast<PropertySymbol, Symbol>();
Symbols\PropertySymbol.cs (1)
312
get { return
ExplicitInterfaceImplementations
.Any(); }
Symbols\PublicModel\PropertySymbol.cs (1)
76
get { return _underlying.
ExplicitInterfaceImplementations
.GetPublicSymbols(); }
Symbols\Retargeting\RetargetingPropertySymbol.cs (1)
169
var impls = _underlyingProperty.
ExplicitInterfaceImplementations
;
Symbols\SubstitutedPropertySymbol.cs (1)
123
ExplicitInterfaceHelpers.SubstituteExplicitInterfaceImplementations(OriginalDefinition.
ExplicitInterfaceImplementations
, _containingType.TypeSubstitution),