2 overrides of IsExternal
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
495internal override bool IsExternal => IsExtern || (ImplementationAttributes & MethodImplAttributes.Runtime) != 0;
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
304internal override bool IsExternal
3 references to IsExternal
Microsoft.CodeAnalysis.CSharp (3)
Emitter\Model\MethodSymbolAdapter.cs (1)
395return AdaptedMethodSymbol.IsExternal;
Emitter\NoPia\EmbeddedMethod.cs (1)
78return UnderlyingMethod.AdaptedMethodSymbol.IsExternal;
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
308return UnderlyingMethod.IsExternal;