Ejemplo n.º 1
0
        private async void OnOpenService()
        {
            var app = await _owner.GaeApplication;
            var url = GaeUtils.GetAppUrl(app.DefaultHostname, Service.Id);

            Process.Start(url);
        }
        private void OnOpenService()
        {
            var url = GaeUtils.GetAppUrl(root.GaeApplication.DefaultHostname, Service.Id);

            Process.Start(url);
        }
Ejemplo n.º 3
0
 private void OnOpenService()
 {
     Process.Start(GaeUtils.GetAppUrl(_owner.GaeApplication.DefaultHostname, Service.Id));
 }