Base:
property
IsExtern
Microsoft.CodeAnalysis.CSharp.Symbol.IsExtern
2 overrides of IsExtern
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
370
public sealed override bool
IsExtern
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
845
public sealed override bool
IsExtern
=> PartialImplementationPart is { } implementation ? implementation.IsExtern : base.IsExtern;
17 references to IsExtern
Microsoft.CodeAnalysis.CSharp (17)
Compiler\MethodCompiler.cs (1)
1771
if (sourceMethod.
IsExtern
)
Symbols\Source\SourceConstructorSymbol.cs (2)
51
if (
IsExtern
)
167
if (!hasBody && !
IsExtern
)
Symbols\Source\SourceCustomEventAccessorSymbol.cs (1)
44
if (
IsExtern
&& !IsAbstract)
Symbols\Source\SourceDestructorSymbol.cs (2)
38
if (
IsExtern
)
44
if (!modifierErrors && !hasBlockBody && !isExpressionBodied && !
IsExtern
)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
3390
if (sourceMethod.
IsExtern
)
Symbols\Source\SourceMemberMethodSymbol.cs (3)
1082
if (
IsExtern
&& !IsAbstract)
1086
else if (IsAbstract && !
IsExtern
)
1104
if ((((hasBody ||
IsExtern
) && !(IsStatic && IsVirtual)) || IsExplicitInterfaceImplementation) && !ContainingAssembly.RuntimeSupportsDefaultInterfaceImplementation)
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
845
public sealed override bool IsExtern => PartialImplementationPart is { } implementation ? implementation.IsExtern : base.
IsExtern
;
Symbols\Source\SourceUserDefinedOperatorSymbolBase.cs (5)
92
if (IsAbstract &&
IsExtern
)
100
else if (hasAnyBody && (
IsExtern
|| IsAbstract))
102
Debug.Assert(!(IsAbstract &&
IsExtern
));
103
if (
IsExtern
)
112
else if (!hasAnyBody && !
IsExtern
&& !IsAbstract && !IsPartial)
Symbols\Synthesized\SynthesizedEventAccessorSymbol.cs (1)
31
Debug.Assert(IsAbstract ||
IsExtern
|| IsFieldLikeEventAccessor());