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