コード例 #1
0
        public void NavigateToSite()
        {
            if (IsSplash)
            {
                return;
            }

            var supportUrl = GetType().Assembly.GetAttribute <SupportWebUrlAttribute>();

            _networkOperations.Browse(supportUrl.WebUrl);
        }
コード例 #2
0
ファイル: AboutViewModel.cs プロジェクト: 4lx/Profiler
 public void NavigateToWebsite()
 {
     _networkOperations.Browse(ProductUrl);
 }
コード例 #3
0
 public void Purchase()
 {
     _network.Browse(LicensingPageUrl);
 }
コード例 #4
0
 public void Navigate(string navigateUri)
 {
     _networkOperations.Browse(navigateUri);
 }