11 overrides of CanBeCallerUnsafe
Microsoft.CodeAnalysis.CSharp (11)
Lowering\SynthesizedMethodBaseSymbol.cs (1)
178
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\LambdaSymbol.cs (1)
431
internal override bool
CanBeCallerUnsafe
=> false;
Symbols\Source\LocalFunctionSymbol.cs (1)
422
internal override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\SourceConstructorSymbol.cs (1)
250
internal sealed override bool
CanBeCallerUnsafe
=> MethodKind != MethodKind.StaticConstructor;
Symbols\Source\SourceDelegateMethodSymbol.cs (1)
147
internal sealed override bool
CanBeCallerUnsafe
=> false;
Symbols\Source\SourceDestructorSymbol.cs (1)
107
internal sealed override bool
CanBeCallerUnsafe
=> false;
Symbols\Source\SourceEventAccessorSymbol.cs (1)
199
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\SourceOrdinaryMethodOrUserDefinedOperatorSymbol.cs (1)
176
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
464
internal sealed override bool
CanBeCallerUnsafe
=> true;
Symbols\Synthesized\Records\SynthesizedPrimaryConstructor.cs (1)
100
internal sealed override bool
CanBeCallerUnsafe
=> false;
Symbols\Synthesized\SynthesizedSimpleProgramEntryPointSymbol.cs (1)
154
internal sealed override bool
CanBeCallerUnsafe
1 reference to CanBeCallerUnsafe
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourceMethodSymbol.cs (1)
133
if (!
CanBeCallerUnsafe
)