App.cs 755 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using Bridge;
  3. using Bridge.Html5;
  4. namespace DataExchange.Tests
  5. {
  6. public class App
  7. {
  8. private const string InterfaceName = "BrApi0";
  9. private static readonly ExternalDataExchangeApi DxApi;
  10. static App()
  11. {
  12. if (Script.Undefined == (Window.Get(InterfaceName)))
  13. Window.Set(InterfaceName, new DummyDataExchangeApi());
  14. DxApi = Window.Get<ExternalDataExchangeApi>(InterfaceName);
  15. }
  16. public static void Main()
  17. {
  18. var dxs = new DataExchangeService(DxApi);
  19. var svc = dxs.Create<IInterface1>("Svc1Name");
  20. svc.Op0(DateTime.Now);
  21. svc.Op1(new Op1Input());
  22. svc.Op2(true);
  23. }
  24. }
  25. }