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