6 overrides of IsSecurityTransparent
System.Private.CoreLib (2)
System\Reflection\Runtime\General\ThunkedApis.cs (2)
97public sealed override bool IsSecurityTransparent => false; 125public sealed override bool IsSecurityTransparent => false;
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
59public override bool IsSecurityTransparent
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
61public override bool IsSecurityTransparent
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
76public sealed override bool IsSecurityTransparent => throw new InvalidOperationException(SR.InvalidOperation_IsSecurity);
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
119public sealed override bool IsSecurityTransparent => throw new InvalidOperationException(SR.InvalidOperation_IsSecurity);
2 references to IsSecurityTransparent
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
61get { return UnderlyingConstructor.IsSecurityTransparent; }
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
63get { return UnderlyingMethod.IsSecurityTransparent; }