11 overrides of CanBeCallerUnsafe
Microsoft.CodeAnalysis.CSharp (11)
Lowering\SynthesizedMethodBaseSymbol.cs (1)
177
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\LambdaSymbol.cs (1)
430
internal override bool
CanBeCallerUnsafe
=> false;
Symbols\Source\LocalFunctionSymbol.cs (1)
402
internal override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\SourceConstructorSymbol.cs (1)
248
internal sealed override bool
CanBeCallerUnsafe
=> MethodKind != MethodKind.StaticConstructor;
Symbols\Source\SourceDelegateMethodSymbol.cs (1)
146
internal sealed override bool
CanBeCallerUnsafe
=> false;
Symbols\Source\SourceDestructorSymbol.cs (1)
106
internal sealed override bool
CanBeCallerUnsafe
=> false;
Symbols\Source\SourceEventAccessorSymbol.cs (1)
198
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\SourceOrdinaryMethodOrUserDefinedOperatorSymbol.cs (1)
175
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
474
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Synthesized\Records\SynthesizedPrimaryConstructor.cs (1)
99
internal sealed override bool
CanBeCallerUnsafe
=> false;
Symbols\Synthesized\SynthesizedSimpleProgramEntryPointSymbol.cs (1)
153
internal sealed override bool
CanBeCallerUnsafe
1 reference to CanBeCallerUnsafe
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourceMethodSymbol.cs (1)
117
if (!
CanBeCallerUnsafe
)