Guest User

Untitled

a guest
May 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class EdgeController : ApiController
  2. {
  3. static Func<object, Task<object>> func = Edge.Func(
  4. @"return function(data, callback){
  5. callback(null, 'Node.js ' + process.version + ' welcome '+data);
  6. }");
  7.  
  8. [HttpGet]
  9. public string Get()
  10. {
  11. return (string)func(".Net").Result;
  12. }
  13. }
Add Comment
Please, Sign In to add comment