Base:
property
IsExtern
Microsoft.CodeAnalysis.CSharp.Symbol.IsExtern
9 references to IsExtern
Microsoft.CodeAnalysis.CSharp (9)
Symbols\Metadata\PE\PEEventSymbol.cs (4)
280return _addMethod.IsExtern || _removeMethod.IsExtern; 432(addMethod.IsExtern == removeMethod.IsExtern) &&
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
523internal override bool IsExternal => IsExtern || (ImplementationAttributes & MethodImplAttributes.Runtime) != 0;
Symbols\Metadata\PE\PEPropertySymbol.cs (4)
550((object)_getMethod != null && _getMethod.IsExtern) || 551((object)_setMethod != null && _setMethod.IsExtern); 867if ((getMethod.IsExtern != setMethod.IsExtern) ||