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