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