ITypeSymbol.FindImplementationForInterfaceMember(ISymbol) Method

Definition

Returns the corresponding symbol in this type or a base type that implements interfaceMember (either implicitly or explicitly), or null if no such symbol exists (which might be either because this type doesn't implement the container of interfaceMember, or this type doesn't supply a member that successfully implements interfaceMember).

public:
 Microsoft::CodeAnalysis::ISymbol ^ FindImplementationForInterfaceMember(Microsoft::CodeAnalysis::ISymbol ^ interfaceMember);
public Microsoft.CodeAnalysis.ISymbol FindImplementationForInterfaceMember (Microsoft.CodeAnalysis.ISymbol interfaceMember);
public Microsoft.CodeAnalysis.ISymbol? FindImplementationForInterfaceMember (Microsoft.CodeAnalysis.ISymbol interfaceMember);
abstract member FindImplementationForInterfaceMember : Microsoft.CodeAnalysis.ISymbol -> Microsoft.CodeAnalysis.ISymbol
Public Function FindImplementationForInterfaceMember (interfaceMember As ISymbol) As ISymbol

Parameters

interfaceMember
ISymbol

Must be a non-null interface property, method, or event.

Returns

Applies to