6 references to RunFromAsync
Microsoft.CodeAnalysis.InteractiveHost (1)
Interactive\Core\InteractiveHost.Service.cs (1)
756
: script.
RunFromAsync
(state, catchException: e => true, cancellationToken: CancellationToken.None);
Microsoft.CodeAnalysis.Scripting (5)
Hosting\CommandLine\CommandLineRunner.cs (1)
307
: newScript.
RunFromAsync
(state, catchException: e => true, cancellationToken: cancellationToken);
Script.cs (2)
385
=>
RunFromAsync
(previousState, catchException, cancellationToken).CastAsync<ScriptState<T>, ScriptState>();
531
=>
RunFromAsync
(previousState, null, cancellationToken);
ScriptState.cs (2)
157
=> Script.ContinueWith<object>(code, options).
RunFromAsync
(this, catchException, cancellationToken);
181
=> Script.ContinueWith<TResult>(code, options).
RunFromAsync
(this, catchException, cancellationToken);