Base:
property
ImplementationAttributes
Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol.ImplementationAttributes
4 overrides of ImplementationAttributes
Microsoft.CodeAnalysis.CSharp (4)
Lowering\SynthesizedMethodBaseSymbol.cs (1)
178internal sealed override MethodImplAttributes ImplementationAttributes => InheritsBaseMethodAttributes ? BaseMethod.ImplementationAttributes : default;
Symbols\Source\SourceDelegateMethodSymbol.cs (1)
197internal sealed override System.Reflection.MethodImplAttributes ImplementationAttributes
Symbols\Synthesized\SynthesizedEventAccessorSymbol.cs (1)
79internal override MethodImplAttributes ImplementationAttributes
Symbols\Synthesized\SynthesizedSimpleProgramEntryPointSymbol.cs (1)
109internal override System.Reflection.MethodImplAttributes ImplementationAttributes
4 references to ImplementationAttributes
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceMethodSymbolWithAttributes.cs (1)
1127if ((this.ImplementationAttributes & System.Reflection.MethodImplAttributes.Synchronized) != 0)
Symbols\Synthesized\SynthesizedEventAccessorSymbol.cs (1)
83MethodImplAttributes result = base.ImplementationAttributes;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (1)
CodeGen\CodeGenLocalFunctionTests.cs (1)
5908Assert.Equal(expectedFlags, localFunction.ImplementationAttributes);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\TopLevelStatementsTests.cs (1)
6085Assert.Equal(expectedFlags, localFunction.ImplementationAttributes);