18 overrides of RequiresSecurityObject
Microsoft.CodeAnalysis.CSharp (18)
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
115internal override bool RequiresSecurityObject
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
185internal sealed override bool RequiresSecurityObject
Symbols\ErrorMethodSymbol.cs (1)
232internal sealed override bool RequiresSecurityObject
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
841internal override bool RequiresSecurityObject => false;
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
468internal override bool RequiresSecurityObject => HasFlag(MethodAttributes.RequireSecObject);
Symbols\ReducedExtensionMethodSymbol.cs (1)
321internal override bool RequiresSecurityObject
Symbols\SignatureOnlyMethodSymbol.cs (1)
113internal override bool RequiresSecurityObject { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\SourceMethodSymbolWithAttributes.cs (1)
1681internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
138internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
82internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
110internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
221internal sealed override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
97internal sealed override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
198internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
176internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs (1)
328internal override bool RequiresSecurityObject
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
330internal override bool RequiresSecurityObject
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
207internal override bool RequiresSecurityObject
6 references to RequiresSecurityObject
Microsoft.CodeAnalysis.CSharp (6)
Emitter\Model\MethodSymbolAdapter.cs (1)
504return AdaptedMethodSymbol.RequiresSecurityObject;
Lowering\SynthesizedMethodBaseSymbol.cs (1)
193internal sealed override bool RequiresSecurityObject => InheritsBaseMethodAttributes && BaseMethod.RequiresSecurityObject;
Symbols\MethodSymbol.cs (1)
1217bool IMethodSymbolInternal.RequiresSecurityObject => RequiresSecurityObject;
Symbols\ReducedExtensionMethodSymbol.cs (1)
323get { return _reducedFrom.RequiresSecurityObject; }
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
223get { return _interfaceMethod.RequiresSecurityObject; }
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
211return UnderlyingMethod.RequiresSecurityObject;