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