1 override of IsInteractive
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourceAssemblySymbol.cs (1)
173public override bool IsInteractive
8 references to IsInteractive
Microsoft.CodeAnalysis.CSharp (8)
Binder\Semantics\AccessCheck.cs (2)
688if (fromAssembly.IsInteractive && toAssembly.IsInteractive)
Emitter\Model\PEModuleBuilder.cs (2)
1219if (symbol.ContainingAssembly.IsInteractive) 1245if (symbol.ContainingAssembly.IsInteractive)
Symbols\MethodSymbol.cs (2)
689return IsScriptConstructor && ContainingAssembly.IsInteractive; 697return IsScriptInitializer && ContainingAssembly.IsInteractive;
Symbols\PublicModel\AssemblySymbol.cs (1)
43bool IAssemblySymbol.IsInteractive => UnderlyingAssemblySymbol.IsInteractive;
Symbols\Source\SourceModuleSymbol.cs (1)
450return ContainingAssembly.IsInteractive ? AttributeLocation.None : AttributeLocation.Assembly | AttributeLocation.Module;