1 instantiation of InteractiveHost
Microsoft.CodeAnalysis.EditorFeatures (1)
Interactive\InteractiveSession.cs (1)
101Host = new InteractiveHost(languageInfo.ReplServiceProviderType, initialWorkingDirectory);
12 references to InteractiveHost
InteractiveHost32 (1)
src\Interactive\HostProcess\InteractiveHostEntryPoint.cs (1)
57await InteractiveHost.Service.RunServerAsync(pipeName, clientProcessId, invokeOnMainThread).ConfigureAwait(false);
InteractiveHost64 (1)
src\Interactive\HostProcess\InteractiveHostEntryPoint.cs (1)
57await InteractiveHost.Service.RunServerAsync(pipeName, clientProcessId, invokeOnMainThread).ConfigureAwait(false);
Microsoft.CodeAnalysis.EditorFeatures (3)
Interactive\InteractiveSession.cs (3)
34public InteractiveHost Host { get; } 129/// Invoked by <see cref="InteractiveHost"/> when a new process initialization completes. 383platform ?? Host.OptionsOpt?.Platform ?? InteractiveHost.DefaultPlatform);
Microsoft.CodeAnalysis.InteractiveHost (7)
Interactive\Core\InteractiveHost.LazyRemoteService.cs (3)
27public readonly InteractiveHost Host; 31public LazyRemoteService(InteractiveHost host, InteractiveHostOptions options, int instanceId, bool skipInitialization) 136var pipeName = typeof(InteractiveHost).FullName + Guid.NewGuid();
Interactive\Core\InteractiveHost.RemoteService.cs (4)
34private InteractiveHost? _host; // nulled on dispose 39internal RemoteService(InteractiveHost host, Process process, int processId, JsonRpc jsonRpc, InteractiveHostPlatformInfo platformInfo, InteractiveHostOptions options) 96var host = _host; 164var localHost = _host;