18 overrides of HasDeclarativeSecurity
Microsoft.CodeAnalysis.CSharp (18)
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
95internal override bool HasDeclarativeSecurity
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
200internal sealed override bool HasDeclarativeSecurity
Symbols\ErrorMethodSymbol.cs (1)
257internal sealed override bool HasDeclarativeSecurity
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
839internal override bool HasDeclarativeSecurity => false;
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
483internal override bool HasDeclarativeSecurity => HasFlag(MethodAttributes.HasSecurity);
Symbols\ReducedExtensionMethodSymbol.cs (1)
341internal override bool HasDeclarativeSecurity
Symbols\SignatureOnlyMethodSymbol.cs (1)
119internal override bool HasDeclarativeSecurity { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\SourceMethodSymbolWithAttributes.cs (1)
1690internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
118internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
265internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
131internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
254internal sealed override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
112internal sealed override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
183internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
145internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs (1)
346internal override bool HasDeclarativeSecurity
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
353internal override bool HasDeclarativeSecurity
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
228internal override bool HasDeclarativeSecurity
6 references to HasDeclarativeSecurity
Microsoft.CodeAnalysis.CSharp (6)
Emitter\Model\MethodSymbolAdapter.cs (2)
350return AdaptedMethodSymbol.HasDeclarativeSecurity; 359Debug.Assert(AdaptedMethodSymbol.HasDeclarativeSecurity);
Lowering\SynthesizedMethodBaseSymbol.cs (1)
195internal sealed override bool HasDeclarativeSecurity => InheritsBaseMethodAttributes && BaseMethod.HasDeclarativeSecurity;
Symbols\MethodSymbol.cs (1)
1208bool IMethodSymbolInternal.HasDeclarativeSecurity => HasDeclarativeSecurity;
Symbols\ReducedExtensionMethodSymbol.cs (1)
343get { return _reducedFrom.HasDeclarativeSecurity; }
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
230get { return UnderlyingMethod.HasDeclarativeSecurity; }