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); }
private void OnOpenService() { Process.Start(GaeUtils.GetAppUrl(_owner.GaeApplication.DefaultHostname, Service.Id)); }