Example #1
0
        public LanguageServer(SendToClient sendToClient, IPowerFxScopeFactory scopeFactory)
        {
            Contracts.AssertValue(sendToClient);
            Contracts.AssertValue(scopeFactory);

            _sendToClient = sendToClient;
            _scopeFactory = scopeFactory;
        }
Example #2
0
        public MsgInfo(string msg, SendToClient send)
        {
            this.msg = msg;

            this.send = send;
        }
Example #3
0
        public void SendDataToClient()
        {
            var sender = new SendToClient();

            sender.AuthenticatorFeed(Strings.hashList, sha);
        }
Example #4
0
 public TestLanguageServer(SendToClient sendToClient, IPowerFxScopeFactory scopeFactory) : base(sendToClient, scopeFactory)
 {
 }