forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJupyterKernelHelper.cs
40 lines (31 loc) · 1.31 KB
/
JupyterKernelHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Microsoft.DotNet.Interactive.Jupyter.Protocol;
namespace Microsoft.DotNet.Interactive.Jupyter;
public static class TopLevelMethods
{
public static string input(string prompt = "")
{
var context = JupyterRequestContext.Current;
if (context.JupyterRequestMessageEnvelope.Content is ExecuteRequest { AllowStdin: false })
{
throw new NotSupportedException("Input prompt is not supported.");
}
var inputReq = new InputRequest(prompt, password: false);
var result = context.JupyterMessageSender.Send(inputReq);
return result;
}
public static PasswordString password(string prompt = "")
{
var context = JupyterRequestContext.Current;
if (context.JupyterRequestMessageEnvelope.Content is ExecuteRequest { AllowStdin: false })
{
throw new NotSupportedException("Password prompt is not supported.");
}
var inputReq = new InputRequest(prompt, password: true);
var password = context.JupyterMessageSender.Send(inputReq);
var result = new PasswordString(password);
return result;
}
}