Base:
property
IsExtern
Microsoft.CodeAnalysis.CSharp.Symbol.IsExtern
4 overrides of IsExtern
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Source\SourceConstructorSymbol.cs (1)
328
public sealed override bool
IsExtern
=> PartialImplementationPart is { } implementation ? implementation.IsExtern : HasExternModifier;
Symbols\Source\SourceEventAccessorSymbol.cs (1)
252
public sealed override bool
IsExtern
=> PartialImplementationPart is { } implementation ? implementation.IsExtern : base.IsExtern;
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
380
public sealed override bool
IsExtern
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
830
public sealed override bool
IsExtern
=> PartialImplementationPart is { } implementation ? implementation.IsExtern : base.IsExtern;
14 references to IsExtern
Microsoft.CodeAnalysis.CSharp (14)
Compiler\MethodCompiler.cs (1)
1881
if (sourceMethod.
IsExtern
)
Symbols\Source\SourceDestructorSymbol.cs (2)
39
if (
IsExtern
)
45
if (!modifierErrors && !hasBlockBody && !isExpressionBodied && !
IsExtern
)
Symbols\Source\SourceEventAccessorSymbol.cs (1)
252
public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : base.
IsExtern
;
Symbols\Source\SourceMemberContainerSymbol.cs (1)
3742
if (sourceMethod.
IsExtern
)
Symbols\Source\SourceMemberMethodSymbol.cs (3)
1042
if (
IsExtern
&& !IsAbstract)
1046
else if (IsAbstract && !
IsExtern
)
1064
if ((((hasBody ||
IsExtern
) && !(IsStatic && IsVirtual)) || IsExplicitInterfaceImplementation) && !ContainingAssembly.RuntimeSupportsDefaultInterfaceImplementation)
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
830
public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : base.
IsExtern
;
Symbols\Source\SourceUserDefinedOperatorSymbolBase.cs (5)
113
if (IsAbstract &&
IsExtern
)
121
else if (hasAnyBody && (
IsExtern
|| IsAbstract))
123
Debug.Assert(!(IsAbstract &&
IsExtern
));
124
if (
IsExtern
)
133
else if (!hasAnyBody && !
IsExtern
&& !IsAbstract && !IsPartial)