public LanguageServer(SendToClient sendToClient, IPowerFxScopeFactory scopeFactory) { Contracts.AssertValue(sendToClient); Contracts.AssertValue(scopeFactory); _sendToClient = sendToClient; _scopeFactory = scopeFactory; }
public MsgInfo(string msg, SendToClient send) { this.msg = msg; this.send = send; }
public void SendDataToClient() { var sender = new SendToClient(); sender.AuthenticatorFeed(Strings.hashList, sha); }
public TestLanguageServer(SendToClient sendToClient, IPowerFxScopeFactory scopeFactory) : base(sendToClient, scopeFactory) { }