2 overrides of IsExternal
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
523
internal override bool
IsExternal
=> IsExtern || (ImplementationAttributes & MethodImplAttributes.Runtime) != 0;
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
304
internal override bool
IsExternal
5 references to IsExternal
Microsoft.CodeAnalysis.CSharp (5)
Emitter\Model\MethodSymbolAdapter.cs (1)
398
return !AdaptedMethodSymbol.ContainingType.IsExtension && AdaptedMethodSymbol.
IsExternal
;
Emitter\NoPia\EmbeddedMethod.cs (1)
78
return UnderlyingMethod.AdaptedMethodSymbol.
IsExternal
;
Symbols\Extensions\SourceExtensionImplementationMethodSymbol.cs (1)
63
internal sealed override bool IsExternal => _originalMethod.
IsExternal
;
Symbols\MethodSymbol.cs (1)
1214
bool IMethodSymbolInternal.IsExternal =>
IsExternal
;
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
308
return UnderlyingMethod.
IsExternal
;