Base:
property
IsExtern
Microsoft.CodeAnalysis.CSharp.Symbol.IsExtern
9 references to IsExtern
Microsoft.CodeAnalysis.CSharp (9)
Symbols\Metadata\PE\PEEventSymbol.cs (4)
280
return _addMethod.
IsExtern
|| _removeMethod.
IsExtern
;
432
(addMethod.
IsExtern
== removeMethod.
IsExtern
) &&
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
523
internal 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
);
867
if ((getMethod.
IsExtern
!= setMethod.
IsExtern
) ||